diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-03-22 22:18:43 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-03-22 22:18:43 +0000 |
commit | 1369949e5e4e5fc4a4412296674f9783d58cf303 (patch) | |
tree | ec21dd66dcc1d48a8c199632238ba65d7c361a8e /gas/config | |
parent | 5f5341a71f2875ebdb3b657784da12de724641c6 (diff) | |
download | gdb-1369949e5e4e5fc4a4412296674f9783d58cf303.zip gdb-1369949e5e4e5fc4a4412296674f9783d58cf303.tar.gz gdb-1369949e5e4e5fc4a4412296674f9783d58cf303.tar.bz2 |
* config/tc-mips.c (macro): Use $AT for any floating point load.
Also get the debugging information right in obj-ecoff.c.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 6a88a5a..e37e5f7 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -1096,7 +1096,7 @@ macro (ip) case M_LWR_AB: s = "lwr"; ld: - if (breg == treg || treg == 0) { + if (breg == treg || mask == M_LWC1_AB) { tempreg = AT; used_at = 1; } else { |