diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-07-11 15:11:15 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-07-11 15:11:15 +0000 |
commit | 369943fe529e449b22d635ba8bc59641a7fdf32d (patch) | |
tree | 2354969e9a123766ae993eaed0c897b6589439ac /gas/config | |
parent | 5aa7ce4b0ad14c425b68a89fa6175d65149bc80f (diff) | |
download | gdb-369943fe529e449b22d635ba8bc59641a7fdf32d.zip gdb-369943fe529e449b22d635ba8bc59641a7fdf32d.tar.gz gdb-369943fe529e449b22d635ba8bc59641a7fdf32d.tar.bz2 |
* config/tc-mips.c (mips_dwarf2_format, mips_dwarf2_addr_size): Use
HAVE_64BIT_SYMBOLS.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 42626ab..8c071fb 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -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; |