We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff77473 commit 39b844eCopy full SHA for 39b844e
zjit/src/codegen.rs
@@ -103,8 +103,8 @@ fn gen_iseq_entry_point(iseq: IseqPtr) -> *const u8 {
103
let code_ptr = gen_iseq_entry_point_body(cb, iseq);
104
105
// Always mark the code region executable if asm.compile() has been used.
106
- // We need to do this even if code_ptr is null because, even if gen_entry()
107
- // or gen_iseq() fails, gen_function() has used asm.compile().
+ // We need to do this even if code_ptr is null because, whether gen_entry()
+ // or gen_iseq() fails or not, gen_function() has already used asm.compile().
108
cb.mark_all_executable();
109
110
code_ptr
0 commit comments