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 6f06a98 commit c76459cCopy full SHA for c76459c
1 file changed
src/cgutils.cpp
@@ -3451,8 +3451,9 @@ static Value *emit_defer_signal(jl_codectx_t &ctx)
3451
static void emit_safepoint(jl_codectx_t &ctx)
3452
{
3453
ctx.builder.CreateCall(prepare_call(gcroot_flush_func));
3454
+ Value* signal_page = get_current_signal_page(ctx);
3455
emit_signal_fence(ctx);
- ctx.builder.CreateLoad(T_size, get_current_signal_page(ctx), true);
3456
+ ctx.builder.CreateLoad(T_size, signal_page, true);
3457
3458
}
3459
0 commit comments