(self, index: int)
| 492 | block.instructions.append(branch.update_target("0")) |
| 493 | |
| 494 | def _make_temp_label(self, index: int) -> Instruction: |
| 495 | marker = f"jit_temp_{index}:" |
| 496 | return Instruction(InstructionKind.OTHER, "", marker, None) |
| 497 | |
| 498 | def _fixup_constants(self) -> None: |
| 499 | if not self.supports_small_constants: |
no test coverage detected