From 71c968b9654c06088fc72e27b8aceb0b80bffd2d Mon Sep 17 00:00:00 2001 From: rahnds Date: Thu, 24 Apr 1997 18:10:16 +0000 Subject: [PATCH] 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. --- gnu/usr.bin/gas/opcode/m88k.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.20.1