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/c/c-parser.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/c/c-parser.c')
-rw-r--r-- | gcc/c/c-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c index 81eea18..f312630 100644 --- a/gcc/c/c-parser.c +++ b/gcc/c/c-parser.c @@ -1791,7 +1791,7 @@ static void add_debug_begin_stmt (location_t loc) { /* Don't add DEBUG_BEGIN_STMTs outside of functions, see PR84721. */ - if (!debug_nonbind_markers_p || !building_stmt_list_p ()) + if (!MAY_HAVE_DEBUG_MARKER_STMTS || !building_stmt_list_p ()) return; tree stmt = build0 (DEBUG_BEGIN_STMT, void_type_node); |