Skip to content

Commit 421bf0d

Browse files
authored
x86: Catch remaining 'int imm8' with Ijk_Sys_int (#73)
1 parent e12bd8c commit 421bf0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

priv/guest_x86_toIR.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -13862,8 +13862,8 @@ DisResult disInstr_X86_WRK (
1386213862
jump_kind = Ijk_Sys_int210;
1386313863
break;
1386413864
default:
13865-
/* none of the above */
13866-
goto decode_failure;
13865+
jump_kind = Ijk_Sys_int;
13866+
break;
1386713867
}
1386813868

1386913869
stmt( IRStmt_Put( OFFB_IP_AT_SYSCALL,

0 commit comments

Comments
 (0)