* config/tc-mips.c (mips_dwarf2_format, mips_dwarf2_addr_size): Use
authorDaniel Jacobowitz <drow@false.org>
Wed, 11 Jul 2007 15:11:15 +0000 (15:11 +0000)
committerDaniel Jacobowitz <drow@false.org>
Wed, 11 Jul 2007 15:11:15 +0000 (15:11 +0000)
HAVE_64BIT_SYMBOLS.

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

index 784ca76..cd86a5d 100644 (file)
@@ -1,3 +1,8 @@
+2007-07-11  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * config/tc-mips.c (mips_dwarf2_format, mips_dwarf2_addr_size): Use
+       HAVE_64BIT_SYMBOLS.
+
 2007-07-04  Richard Sandiford  <richard@codesourcery.com>
 
        * config/tc-mips.c (mips_cpu_info_table): Add new entries for
index 42626ab..8c071fb 100644 (file)
@@ -15104,7 +15104,7 @@ MIPS options:\n\
 enum dwarf2_format
 mips_dwarf2_format (void)
 {
-  if (mips_abi == N64_ABI)
+  if (HAVE_64BIT_SYMBOLS)
     {
 #ifdef TE_IRIX
       return dwarf2_format_64bit_irix;
@@ -15119,7 +15119,7 @@ mips_dwarf2_format (void)
 int
 mips_dwarf2_addr_size (void)
 {
-  if (mips_abi == N64_ABI)
+  if (HAVE_64BIT_SYMBOLS)
     return 8;
   else
     return 4;