mips: correct mapping instruction string to instruction ID for alias instructions BAL & BEQZ. bug reported by Pancake
This commit is contained in:
parent
4f0d7048cd
commit
e0eb06b7ab
|
@ -9638,8 +9638,8 @@ static name_map insn_name_maps[] = {
|
|||
// special alias insn
|
||||
static name_map alias_insn_names[] = {
|
||||
{ MIPS_INS_NOP, "nop" },
|
||||
{ MIPS_INS_BEQ, "beqz" },
|
||||
{ MIPS_INS_BGEZAL, "bal" },
|
||||
{ MIPS_INS_BEQZ, "beqz" },
|
||||
{ MIPS_INS_BAL, "bal" },
|
||||
{ MIPS_INS_BC1T, "bc1t" },
|
||||
{ MIPS_INS_BC1F, "bc1f" },
|
||||
{ MIPS_INS_NEGU, "negu" },
|
||||
|
|
Loading…
Reference in New Issue