Commit a3bab3df authored by Kevin Modzelewski's avatar Kevin Modzelewski

Turn this off while llvm jit is off

parent 59c8721b
...@@ -673,8 +673,8 @@ Value ASTInterpreter::visit_jump(AST_Jump* node) { ...@@ -673,8 +673,8 @@ Value ASTInterpreter::visit_jump(AST_Jump* node) {
// we may have started JITing because the OSR thresholds got triggered in this case we don't want to jit // we may have started JITing because the OSR thresholds got triggered in this case we don't want to jit
// additional blocks ouside of the loop if the function is cold. // additional blocks ouside of the loop if the function is cold.
if (md->times_interpreted < REOPT_THRESHOLD_INTERPRETER) //if (md->times_interpreted < REOPT_THRESHOLD_INTERPRETER)
should_jit = false; //should_jit = false;
} }
if (backedge) if (backedge)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment