summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1997-04-24 18:10:17 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1997-04-24 18:10:17 +0000
commita10706cb525261402a7c6f60760d554183364a8b (patch)
treed204842578f45777ea58075064ba67f758d98246 /gnu
parente9a03598f0d455964579573be37f4ecbdf1c36da (diff)
fix subtle bug in the m88k assembler, without this fix it would not assemble
the instruction "rot r24,r24,r13" because it did not accept the shift about being specified by the register.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/gas/opcode/m88k.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/gas/opcode/m88k.h b/gnu/usr.bin/gas/opcode/m88k.h
index 5f685b90fc8..62f847512a3 100644
--- a/gnu/usr.bin/gas/opcode/m88k.h
+++ b/gnu/usr.bin/gas/opcode/m88k.h
@@ -216,8 +216,8 @@ static struct m88k_opcode m88k_opcodes[] =
_MC88xxx(0x58000000, "or", "d,1,I")
_MC88xxx(0xf4005c00, "or.c", "d,1,2")
_MC88xxx(0x5c000000, "or.u", "d,1,I")
- _MC88xxx(0xf000a800, "rot", "d,1,b")
_MC88xxx(0xf400a800, "rot", "d,1,2")
+ _MC88xxx(0xf000a800, "rot", "d,1,b")
_MC88xxx(0xf400fc00, "rte", "")
_MC88xxx(0xf4008800, "set", "d,1,2")
_MC88xxx(0xf0008800, "set", "d,1,b")