diff options
author | Martin Liska <mliska@suse.cz> | 2021-11-19 15:29:35 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2021-11-19 15:29:35 +0100 |
commit | 79e9f721d1a6f370ce0534745baeeb5a56da948e (patch) | |
tree | 9574ee4ccceae4c412c0771e3106422c7c1a0a0e /gcc/tree.h | |
parent | c7381debe4c5dd7878338f38db98face1cfa6f90 (diff) | |
download | gcc-79e9f721d1a6f370ce0534745baeeb5a56da948e.zip gcc-79e9f721d1a6f370ce0534745baeeb5a56da948e.tar.gz gcc-79e9f721d1a6f370ce0534745baeeb5a56da948e.tar.bz2 |
Revert "Remove MAY_HAVE_DEBUG_MARKER_STMTS and MAY_HAVE_DEBUG_BIND_STMTS."
This reverts commit 206b22d021d94adbaa79e1d443c87415254b15de.
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1174,9 +1174,14 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int, #define VL_EXP_OPERAND_LENGTH(NODE) \ ((int)TREE_INT_CST_LOW (VL_EXP_CHECK (NODE)->exp.operands[0])) +/* Nonzero if gimple_debug_nonbind_marker_p() may possibly hold. */ +#define MAY_HAVE_DEBUG_MARKER_STMTS debug_nonbind_markers_p +/* Nonzero if gimple_debug_bind_p() (and thus + gimple_debug_source_bind_p()) may possibly hold. */ +#define MAY_HAVE_DEBUG_BIND_STMTS flag_var_tracking_assignments /* Nonzero if is_gimple_debug() may possibly hold. */ #define MAY_HAVE_DEBUG_STMTS \ - (debug_nonbind_markers_p || flag_var_tracking_assignments) + (MAY_HAVE_DEBUG_MARKER_STMTS || MAY_HAVE_DEBUG_BIND_STMTS) /* In a LOOP_EXPR node. */ #define LOOP_EXPR_BODY(NODE) TREE_OPERAND_CHECK_CODE (NODE, LOOP_EXPR, 0) |