()
| 77 | let asm = compile_fixture("control_flow", "02_conditional_and_loop"); |
| 78 | assert!( |
| 79 | asm.contains("bne"), |
| 80 | "expected 'bne' for conditional branching" |
| 81 | ); |
| 82 | } |
| 83 | |
| 84 | #[test] |
| 85 | fn loops_emit_multiple_labels_and_jumps() { |
nothing calls this directly
no test coverage detected