@@ -717,19 +717,19 @@ _PyJIT_translate_single_bytecode_to_trace(
717717 assert (next_instr == computed_next_instr || next_instr == computed_jump_instr );
718718 int jump_happened = computed_jump_instr == next_instr ;
719719 uint32_t uopcode = BRANCH_TO_GUARD [opcode - POP_JUMP_IF_FALSE ][jump_happened ];
720- ADD_TO_TRACE (uopcode , 0 , 0 , INSTR_IP (jump_happened ? computed_next_instr : computed_jump_instr , old_code ));
720+ ADD_TO_TRACE (uopcode , 0 , 0 , INSTR_IP (jump_happened ? computed_next_instr : computed_jump_instr , old_code ));
721721 // Branch is biased to jumping, but jump did not happen.
722722 // We are likely in a bad trace. So we should retrace later.
723723 if ((direction > 10 && !jump_happened ) ||
724724 // Branch is biased to not jumping, but jump did not happen.
725- // We are likely in a bad trace. So we should retrace later.
725+ // We are likely in a bad trace. So we should retrace later
726726 (direction < 6 && jump_happened ) ||
727727 // Finally, branch is just not heavily biased.
728728 // So we should not trace through it anyways
729- // This prevents trace explosion.
729+ // This prevents trace explosion
730730 (direction >= 6 && direction <= 10 )
731731 ) {
732- ADD_TO_TRACE (_EXIT_TRACE , 0 , 0 , INSTR_IP (next_instr , old_code ));
732+ ADD_TO_TRACE (_EXIT_TRACE , 0 , 0 , INSTR_IP (next_instr , old_code ));
733733 goto full ;
734734 }
735735 break ;
0 commit comments