From dddfb74b0b7599fd4e093b69f7f413a4eec1c31b Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 4 Nov 1993 08:21:35 +0000 Subject: [PATCH] (dbxout_symbol_location): Test DECL_IN_TEXT_SECTION. From-SVN: r5990 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 8308ab8fd69..2a9cc962fec 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1796,7 +1796,7 @@ dbxout_symbol_location (decl, type, suffix, home) if (!DECL_INITIAL (decl)) current_sym_code = N_LCSYM; - else if (in_text_section ()) + else if (DECL_IN_TEXT_SECTION (decl)) /* This is not quite right, but it's the closest of all the codes that Unix defines. */ current_sym_code = DBX_STATIC_CONST_VAR_CODE; -- 2.30.2