From: Adam Nemet Date: Thu, 9 Apr 2009 15:28:56 +0000 (+0000) Subject: * config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS X-Git-Tag: sid-snapshot-20090501~214 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b6b345096317186639f6a8616a5e80482b41878;p=external%2Fbinutils.git * config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS instead of HAVE_64BIT_SYMBOLS. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index e42f0a2..5f63801 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2009-04-09 Adam Nemet + + * config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS + instead of HAVE_64BIT_SYMBOLS. + 2009-04-07 DJ Delorie * config/tc-mep.c: Add UCI/DSP instruction support. Add C5 support. diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index c139ea1..62d4e4f 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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;