summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2004-04-19 21:08:43 +0000
committerEric Christopher <echristo@apple.com>2004-04-19 21:08:43 +0000
commitbbb69e0862189698e6137b6d30f179d88c4acd68 (patch)
tree1f7801a946f87e248b6be91904f1518f04ecaa31
parentc2aa082c95479c723d79bb936a21032938ec5639 (diff)
downloadbinutils-redhat-bbb69e0862189698e6137b6d30f179d88c4acd68.tar.gz
2004-04-19 Eric Christopher <echristo@redhat.com>
* config/tc-mips.c (mips_dwarf2_addr_size): Revert part of previous patch for fix in gcc.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-mips.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 973a887551..f98a14d034 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-19 Eric Christopher <echristo@redhat.com>
+
+ * config/tc-mips.c (mips_dwarf2_addr_size): Revert part
+ of previous patch for fix in gcc.
+
2004-04-19 Jakub Jelinek <jakub@redhat.com>
* config/tc-xtensa.c (xg_assembler_literal): Fix a typo.
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index e47266b552..7b6cee85df 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -14426,10 +14426,6 @@ mips_dwarf2_addr_size (void)
{
if (mips_abi == N64_ABI)
return 8;
- /* GCC for 64-bit targets turns on mlong64 giving
- us 64-bit addresses. */
- else if (mips_abi == EABI_ABI && !file_mips_gp32)
- return 8;
else
return 4;
}