Merge pull request #915 from lioncash/fallthrough

OpcodeDispatcher: Add missing break for UD2 in INTOp()
This commit is contained in:
Ryan Houdek 2021-03-29 22:56:19 -07:00 committed by GitHub
commit c92df21627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5916,6 +5916,7 @@ void OpDispatchBuilder::INTOp(OpcodeArgs) {
}
case 0x0B:
Reason = 5;
break;
case 0xCC:
Reason = 6;
setRIP = true;