From: Richard Stallman Date: Thu, 4 Nov 1993 08:21:35 +0000 (+0000) Subject: (dbxout_symbol_location): Test DECL_IN_TEXT_SECTION. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dddfb74b0b7599fd4e093b69f7f413a4eec1c31b;p=gcc.git (dbxout_symbol_location): Test DECL_IN_TEXT_SECTION. From-SVN: r5990 --- 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;