| 411 | } |
| 412 | |
| 413 | void N64Recomp::CGenerator::emit_function_call_by_register(int reg) const { |
| 414 | fmt::print(output_file, "LOOKUP_FUNC({})(rdram, ctx);\n", gpr_to_string(reg)); |
| 415 | } |
| 416 | |
| 417 | void N64Recomp::CGenerator::emit_function_call_reference_symbol(const Context& context, uint16_t section_index, size_t symbol_index, uint32_t target_section_offset) const { |
| 418 | (void)target_section_offset; |
no test coverage detected