Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/dynarec/arm64/dynarec_arm64_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,8 @@ void iret_to_next(dynarec_arm_t* dyn, uintptr_t ip, int ninst, int is32bits, int
POP1_32(x2);
POP1_32(x3);
}
// check CS is NULL, sgfault if it is
CBZw_MARK3(x1);
// segfault if CS is NULL
CBZw_MARK3(x2);
// clean EFLAGS
MOV32w(x4, 0x3E7FD7); // also mask RF, because it's not really handled
ANDx_REG(x3, x3, x4);
Expand Down
Loading