aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2002-05-22 00:13:13 +0000
committerThiemo Seufer <ths@networkno.de>2002-05-22 00:13:13 +0000
commitc90bbe5b9e74665cec34445633eef8025d692931 (patch)
treece5994f9c8e12cf98ced75bcb6953b9b6dca2868
parent9c07fe7cfa7a157845854215126b1346298edcd1 (diff)
downloadfsf-binutils-gdb-c90bbe5b9e74665cec34445633eef8025d692931.zip
fsf-binutils-gdb-c90bbe5b9e74665cec34445633eef8025d692931.tar.gz
fsf-binutils-gdb-c90bbe5b9e74665cec34445633eef8025d692931.tar.bz2
* config/tc-mips.c (macro): Relax warning, it's toot strict for
embedded-PIC.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-mips.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index d5b3c14..1547fa0 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
2002-05-22 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+ * config/tc-mips.c (macro): Relax warning, it's toot strict for
+ embedded-PIC.
+
+2002-05-22 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
* config/tc-mips.c (macro2): Add 64 bit drol, dror macros.
Optimize the rotate by zero case.
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index 84bec7f..cb4f583 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -4607,7 +4607,7 @@ macro (ip)
if (dbl && HAVE_32BIT_GPRS)
as_warn (_("dla used to load 32-bit register"));
- if (! dbl && HAVE_64BIT_ADDRESSES)
+ if (! dbl && HAVE_64BIT_OBJECTS)
as_warn (_("la used to load 64-bit address"));
if (treg == breg)