MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / emit_return

Method emit_return

src/cgenerator.cpp:480–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

478}
479
480void 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
488void N64Recomp::CGenerator::emit_check_fr(int fpr) const {
489 fmt::print(output_file, "CHECK_FR(ctx, {});\n ", fpr);

Callers 1

process_instructionFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected