| 478 | } |
| 479 | |
| 480 | void N64Recomp::CGenerator::emit_return(const Context& context, size_t func_index) const { |
| 481 | (void)func_index; |
| 482 | if (context.trace_mode) { |
| 483 | fmt::print(output_file, "TRACE_RETURN()\n "); |
| 484 | } |
| 485 | fmt::print(output_file, "return;\n"); |
| 486 | } |
| 487 | |
| 488 | void N64Recomp::CGenerator::emit_check_fr(int fpr) const { |
| 489 | fmt::print(output_file, "CHECK_FR(ctx, {});\n ", fpr); |
no outgoing calls
no test coverage detected