Skip to content

Commit

Permalink
mips_toir: change opcode for jal from 0x2 to 0x3
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish authored and rhelmot committed Mar 16, 2017
1 parent 775e668 commit ba338fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion priv/guest_mips_toIR.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ static Bool is_Branch_or_Jump_and_Link(const UChar * addr)
UInt function = get_function(cins);

/* jal */
if (opcode == 0x02) {
if (opcode == 0x03) {
return True;
}

Expand Down

0 comments on commit ba338fe

Please sign in to comment.