(program: &IrProgram)
| 17 | } |
| 18 | |
| 19 | fn compile_omit_fp(program: &IrProgram) -> String { |
| 20 | let mut compiler = CompilerRv64::new(); |
| 21 | compiler.set_omit_frame_pointer(true); |
| 22 | compiler.compile(program) |
| 23 | } |
| 24 | |
| 25 | #[test] |
| 26 | fn emits_symbolic_labels_for_calls_and_branches() { |