| 1437 | } |
| 1438 | |
| 1439 | void N64Recomp::LiveGenerator::emit_named_function_call(const std::string& function_name) const { |
| 1440 | // The live recompiler can't call functions by name. This is only used for statics, so it's not an issue. |
| 1441 | assert(false); |
| 1442 | errored = true; |
| 1443 | } |
| 1444 | |
| 1445 | void N64Recomp::LiveGenerator::emit_goto(const std::string& target) const { |
| 1446 | sljit_jump* jump = sljit_emit_jump(compiler, SLJIT_JUMP); |
nothing calls this directly
no outgoing calls
no test coverage detected