| 434 | } |
| 435 | |
| 436 | void N64Recomp::CGenerator::emit_label(const std::string& label_name) const { |
| 437 | fmt::print(output_file, |
| 438 | "{}:\n", label_name); |
| 439 | } |
| 440 | |
| 441 | void N64Recomp::CGenerator::emit_jtbl_addend_declaration(const JumpTable& jtbl, int reg) const { |
| 442 | std::string jump_variable = fmt::format("jr_addend_{:08X}", jtbl.jr_vram); |
no outgoing calls
no test coverage detected