(inst: Instruction, analysis: Analysis)
| 211 | emitter.emit("\n\n") |
| 212 | |
| 213 | def get_popped(inst: Instruction, analysis: Analysis) -> str: |
| 214 | stack = get_stack_effect(inst) |
| 215 | return (-stack.base_offset).to_c() |
| 216 | |
| 217 | def generate_tier1_cases( |
| 218 | analysis: Analysis, outfile: TextIO, lines: bool |
no test coverage detected
searching dependent graphs…