mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
sim: microblaze: fix build failure after opcodes update
Commit 07774fccc3280323f43db9ed204f628503b34663 update the microblaze opcodes table to avoid C++ collisions, but missed updating the sim. That caused it to fail to build due to missing keywords.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2015-02-19 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* microblaze.isa: Add "microblaze_" prefix to "or", "and", and "xor".
|
||||||
|
|
||||||
2014-08-19 Alan Modra <amodra@gmail.com>
|
2014-08-19 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
@ -261,19 +261,19 @@ INSTRUCTION(ncput,
|
|||||||
INST_TYPE_R1_IMM12,
|
INST_TYPE_R1_IMM12,
|
||||||
PC += INST_SIZE)
|
PC += INST_SIZE)
|
||||||
|
|
||||||
INSTRUCTION(or,
|
INSTRUCTION(microblaze_or,
|
||||||
0x20,
|
0x20,
|
||||||
INST_TYPE_RD_RA_RB,
|
INST_TYPE_RD_RA_RB,
|
||||||
RD = RA | RB;
|
RD = RA | RB;
|
||||||
PC += INST_SIZE)
|
PC += INST_SIZE)
|
||||||
|
|
||||||
INSTRUCTION(and,
|
INSTRUCTION(microblaze_and,
|
||||||
0x21,
|
0x21,
|
||||||
INST_TYPE_RD_RA_RB,
|
INST_TYPE_RD_RA_RB,
|
||||||
RD = RA & RB;
|
RD = RA & RB;
|
||||||
PC += INST_SIZE)
|
PC += INST_SIZE)
|
||||||
|
|
||||||
INSTRUCTION(xor,
|
INSTRUCTION(microblaze_xor,
|
||||||
0x22,
|
0x22,
|
||||||
INST_TYPE_RD_RA_RB,
|
INST_TYPE_RD_RA_RB,
|
||||||
RD = RA ^ RB;
|
RD = RA ^ RB;
|
||||||
|
Reference in New Issue
Block a user