* config/tc-mips.c (mips_dwarf2_addr_size): Use HAVE_64BIT_OBJECTS
authorAdam Nemet <anemet@caviumnetworks.com>
Thu, 9 Apr 2009 15:28:56 +0000 (15:28 +0000)
committerAdam Nemet <anemet@caviumnetworks.com>
Thu, 9 Apr 2009 15:28:56 +0000 (15:28 +0000)
instead of HAVE_64BIT_SYMBOLS.

gas/ChangeLog
gas/config/tc-mips.c

index e42f0a2..5f63801 100644 (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.
index c139ea1..62d4e4f 100644 (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;