summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrahnds <rahnds@openbsd.org>1997-04-24 18:10:16 +0000
committerrahnds <rahnds@openbsd.org>1997-04-24 18:10:16 +0000
commit71c968b9654c06088fc72e27b8aceb0b80bffd2d (patch)
treef64df709f6a4b950a0642b6b27145ee5325ebda3
parentDon't even support LFS in the kernel. (diff)
downloadwireguard-openbsd-71c968b9654c06088fc72e27b8aceb0b80bffd2d.tar.xz
wireguard-openbsd-71c968b9654c06088fc72e27b8aceb0b80bffd2d.zip
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.
-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")