From 79e9f721d1a6f370ce0534745baeeb5a56da948e Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Fri, 19 Nov 2021 15:29:35 +0100 Subject: Revert "Remove MAY_HAVE_DEBUG_MARKER_STMTS and MAY_HAVE_DEBUG_BIND_STMTS." This reverts commit 206b22d021d94adbaa79e1d443c87415254b15de. --- gcc/c/c-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/c') 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); -- cgit v1.1