* config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS

instead of HAVE_64BIT_SYMBOLS.
This commit is contained in:
Adam Nemet 2009-04-09 15:28:56 +00:00
parent fc15a27240
commit 6b6b345096
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-04-09 Adam Nemet <anemet@caviumnetworks.com>
* config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS
instead of HAVE_64BIT_SYMBOLS.
2009-04-07 DJ Delorie <dj@redhat.com>
* config/tc-mep.c: Add UCI/DSP instruction support. Add C5 support.

View File

@ -15518,7 +15518,7 @@ mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
int
mips_dwarf2_addr_size (void)
{
if (HAVE_64BIT_SYMBOLS)
if (HAVE_64BIT_OBJECTS)
return 8;
else
return 4;