|
@@ -839,7 +839,7 @@ def favor_loops(body_bytecode):
|
|
|
temperature is incremented by one on every call."""
|
|
|
reachable_instructions = body_bytecode.get_reachable()
|
|
|
# First set the temperature to the negative number of instructions.
|
|
|
- temperature = ADAPTIVE_FAST_JIT_TEMPERATURE_THRESHOLD - len(reachable_instructions)
|
|
|
+ temperature = ADAPTIVE_BASELINE_JIT_TEMPERATURE_THRESHOLD - len(reachable_instructions)
|
|
|
for instruction in reachable_instructions:
|
|
|
if isinstance(instruction, bytecode_ir.WhileInstruction):
|
|
|
# Then increase the temperature by the number of instructions reachable
|