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-cfg.c | |
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-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index cde606e..8ed8c69 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -614,7 +614,7 @@ make_blocks (gimple_seq seq) latest (earliest we find) label, and moving debug stmts that are not separated from it by nondebug nonlabel stmts after the label. */ - if (debug_nonbind_markers_p) + if (MAY_HAVE_DEBUG_MARKER_STMTS) { gimple_stmt_iterator label = gsi_none (); @@ -2139,7 +2139,7 @@ gimple_merge_blocks (basic_block a, basic_block b) gsi_insert_before (&dest_gsi, stmt, GSI_NEW_STMT); } /* Other user labels keep around in a form of a debug stmt. */ - else if (!DECL_ARTIFICIAL (label) && flag_var_tracking_assignments) + else if (!DECL_ARTIFICIAL (label) && MAY_HAVE_DEBUG_BIND_STMTS) { gimple *dbg = gimple_build_debug_bind (label, integer_zero_node, |