| 421 | } |
| 422 | |
| 423 | void N64Recomp::CGenerator::emit_function_call(const Context& context, size_t function_index) const { |
| 424 | fmt::print(output_file, "{}(rdram, ctx);\n", context.functions[function_index].name); |
| 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); |
no outgoing calls
no test coverage detected