Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ public InterpretedIRBlockBody(IRClosure closure, Signature signature) {

// JIT currently JITs blocks along with their method and no on-demand by themselves. We only
// promote to full build here if we are -X-C.
if (!closure.getManager().getInstanceConfig().getCompileMode().shouldJIT()) {
if (closure.getManager().getInstanceConfig().getCompileMode().shouldJIT()) {
callCount = -1;
}
}

0 comments on commit aa27e40

Please sign in to comment.