ZJIT: Stop padding side exits (#13295)

This commit is contained in:
Takashi Kokubun 2025-05-12 08:57:15 -07:00 committed by GitHub
parent 64944cf422
commit 0b6cee7329
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2025-05-12 15:57:28 +00:00
Merged-By: k0kubun <takashikkbn@gmail.com>

View File

@ -1678,7 +1678,7 @@ impl Assembler
asm_comment!(asm, "side exit: {state}"); asm_comment!(asm, "side exit: {state}");
asm.ccall(Self::rb_zjit_side_exit as *const u8, vec![]); asm.ccall(Self::rb_zjit_side_exit as *const u8, vec![]);
asm.compile(cb)?; asm.compile(cb)?;
*target = Target::CodePtr(side_exit_ptr); *target = Target::SideExitPtr(side_exit_ptr);
} }
} }
} }