aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-mips.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-03-18 00:52:37 +0000
committerIan Lance Taylor <ian@airs.com>1993-03-18 00:52:37 +0000
commitf6a91cc0f7695aef3575c3d3cca397667a9f1027 (patch)
tree165bd74671321dca3cc613614fbe220a02f854d8 /gas/config/tc-mips.c
parentb17e0267c9a9979aaed40fe3a6178e78d025971c (diff)
downloadgdb-f6a91cc0f7695aef3575c3d3cca397667a9f1027.zip
gdb-f6a91cc0f7695aef3575c3d3cca397667a9f1027.tar.gz
gdb-f6a91cc0f7695aef3575c3d3cca397667a9f1027.tar.bz2
* app.c (do_scrub_next_char): Added new state, 9, to avoid
dropping a space immediately following an identifier. * expr.c, write.c: Rewrote assert expressions to not use multiple lines; I don't think that can be done portably. * config/tc-mips.c (macro): Use $AT if target register is zero in load instruction, which it can be for a floating point load. Also a bunch more changes to config/obj-ecoff.c, still in flux.
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r--gas/config/tc-mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index f59dca2..6a88a5a 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) {
+ if (breg == treg || treg == 0) {
tempreg = AT;
used_at = 1;
} else {