diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 7c45d2e..27698e3 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Mon Mar 22 10:19:00 1993 Ian Lance Taylor (ian@cygnus.com) + + * config/tc-mips.c (macro): Use $AT for any floating point load. + Sat Mar 20 12:50:51 1993 Ken Raeburn (raeburn@urth.cygnus.com) * config/tc-m68k.c (m68k_ip): For operand type 'M', reject 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 { |