diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-08-22 13:27:24 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-08-22 13:27:24 +0000 |
commit | d41288b9ddbc27f5d8a52fb2d41840c663dcf0d5 (patch) | |
tree | 3e79c49f4be9f4ca2ae860f8d8aa2b74b343a889 /gnu/usr.bin/binutils-2.17 | |
parent | d6567f78840cf264b96b1ee92a5e2f4ad2fdad4b (diff) |
make this compile by adapting loongson changes to the 2.17 struct layout
ok miod@ matthew@
Diffstat (limited to 'gnu/usr.bin/binutils-2.17')
-rw-r--r-- | gnu/usr.bin/binutils-2.17/opcodes/mips-opc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/binutils-2.17/opcodes/mips-opc.c b/gnu/usr.bin/binutils-2.17/opcodes/mips-opc.c index 7bfc5824141..f2980429351 100644 --- a/gnu/usr.bin/binutils-2.17/opcodes/mips-opc.c +++ b/gnu/usr.bin/binutils-2.17/opcodes/mips-opc.c @@ -647,10 +647,10 @@ const struct mips_opcode mips_builtin_opcodes[] = {"flushid", "", 0xbc030000, 0xffffffff, 0, 0, L1 }, {"hibernate","", 0x42000023, 0xffffffff, 0, 0, V1 }, {"ins", "t,r,+A,+B", 0x7c000004, 0xfc00003f, WR_t|RD_s, 0, I33 }, -{"jr", "s", 0, (int) M_JR_S, INSN_MACRO, I1 }, +{"jr", "s", 0, (int) M_JR_S, INSN_MACRO, 0, I1 }, {"jr", "s", 0x00000008, 0xfc1fffff, UBD|RD_s, 0, I1 }, {"jr.hb", "s", 0x00000408, 0xfc1fffff, UBD|RD_s, 0, I33 }, -{"j", "s", 0, (int) M_J_S, INSN_MACRO, I1 }, +{"j", "s", 0, (int) M_J_S, INSN_MACRO, 0, I1 }, {"j", "s", 0x00000008, 0xfc1fffff, UBD|RD_s, 0, I1 }, /* jr */ /* SVR4 PIC code requires special handling for j, so it must be a macro. */ @@ -659,9 +659,9 @@ const struct mips_opcode mips_builtin_opcodes[] = assembler, but will never match user input (because the line above will match first). */ {"j", "a", 0x08000000, 0xfc000000, UBD, 0, I1 }, -{"jalr", "s", 0, (int) M_JALR_S, INSN_MACRO, I1 }, +{"jalr", "s", 0, (int) M_JALR_S, INSN_MACRO, 0, I1 }, {"jalr", "s", 0x0000f809, 0xfc1fffff, UBD|RD_s|WR_d, 0, I1 }, -{"jalr", "d,s", 0, (int) M_JALR_DS, INSN_MACRO, I1 }, +{"jalr", "d,s", 0, (int) M_JALR_DS, INSN_MACRO, 0, I1 }, {"jalr", "d,s", 0x00000009, 0xfc1f07ff, UBD|RD_s|WR_d, 0, I1 }, {"jalr.hb", "s", 0x0000fc09, 0xfc1fffff, UBD|RD_s|WR_d, 0, I33 }, {"jalr.hb", "d,s", 0x00000409, 0xfc1f07ff, UBD|RD_s|WR_d, 0, I33 }, |