Accept LABEL_REFs as well as SYMBOL_REFs from the constant pool.

From-SVN: r49542
This commit is contained in:
Nick Clifton 2002-02-06 09:08:19 +00:00 committed by Nick Clifton
parent f5ee37f2ce
commit d3a8b6a672
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
* dbxout.c (dbxout_symbol_location): Accept LABEL_REFs as well
as SYMBOL_REFs from the constant pool.
2002-02-06 Alexandre Oliva <aoliva@redhat.com>
* dbxout.c (dbxout_parms): Apply DEBUGGER_ARG_OFFSET to parameters

View File

@ -2198,7 +2198,8 @@ dbxout_symbol_location (decl, type, suffix, home)
{
rtx tmp = get_pool_constant (current_sym_addr);
if (GET_CODE (tmp) == SYMBOL_REF)
if (GET_CODE (tmp) == SYMBOL_REF
|| GET_CODE (tmp) == LABEL_REF)
current_sym_addr = tmp;
}