| 425 | } |
| 426 | |
| 427 | void N64Recomp::CGenerator::emit_named_function_call(const std::string& function_name) const { |
| 428 | fmt::print(output_file, "{}(rdram, ctx);\n", function_name); |
| 429 | } |
| 430 | |
| 431 | void N64Recomp::CGenerator::emit_goto(const std::string& target) const { |
| 432 | fmt::print(output_file, |
no outgoing calls
no test coverage detected