| 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; |
| 419 | const N64Recomp::ReferenceSymbol& sym = context.get_reference_symbol(section_index, symbol_index); |
| 420 | fmt::print(output_file, "{}(rdram, ctx);\n", sym.name); |
| 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); |
no outgoing calls
no test coverage detected