* symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead

of SYMBOL_VALUE when working with function symbols.
This commit is contained in:
Thiago Jung Bauermann 2008-01-03 21:30:13 +00:00
parent 5dd15031dd
commit 82cf6c60c4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
* symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
of SYMBOL_VALUE when working with function symbols.
2008-01-03 Joel Brobecker <brobecker@adacore.com>
* ada-lang.c (resolve_subexp): Add handling of OP_REGISTER

View File

@ -2109,13 +2109,13 @@ find_pc_sect_line (CORE_ADDR pc, struct bfd_section *section, int notcurrent)
* So I commented out the warning. RT */
/* warning ("In stub for %s; unable to find real function/line info", SYMBOL_LINKAGE_NAME (msymbol)) */ ;
/* fall through */
else if (SYMBOL_VALUE (mfunsym) == SYMBOL_VALUE (msymbol))
else if (SYMBOL_VALUE_ADDRESS (mfunsym) == SYMBOL_VALUE_ADDRESS (msymbol))
/* Avoid infinite recursion */
/* See above comment about why warning is commented out */
/* warning ("In stub for %s; unable to find real function/line info", SYMBOL_LINKAGE_NAME (msymbol)) */ ;
/* fall through */
else
return find_pc_line (SYMBOL_VALUE (mfunsym), 0);
return find_pc_line (SYMBOL_VALUE_ADDRESS (mfunsym), 0);
}