mips: correct mapping instruction string to instruction ID for alias instructions BAL & BEQZ. bug reported by Pancake

This commit is contained in:
Nguyen Anh Quynh 2014-08-29 22:40:38 +08:00
parent 4f0d7048cd
commit e0eb06b7ab
1 changed files with 2 additions and 2 deletions

View File

@ -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" },