| 429 | } |
| 430 | |
| 431 | void N64Recomp::CGenerator::emit_goto(const std::string& target) const { |
| 432 | fmt::print(output_file, |
| 433 | " goto {};\n", target); |
| 434 | } |
| 435 | |
| 436 | void N64Recomp::CGenerator::emit_label(const std::string& label_name) const { |
| 437 | fmt::print(output_file, |
no outgoing calls
no test coverage detected