| 211 | } |
| 212 | |
| 213 | void N64Recomp::LiveGeneratorOutput::set_reference_symbol_jump(size_t jump_index, recomp_func_t* func) { |
| 214 | const auto& jump_entry = reference_symbol_jumps[jump_index]; |
| 215 | sljit_set_jump_addr(reinterpret_cast<sljit_uw>(jump_entry.second), reinterpret_cast<sljit_uw>(func), executable_offset); |
| 216 | } |
| 217 | |
| 218 | N64Recomp::ReferenceJumpDetails N64Recomp::LiveGeneratorOutput::get_reference_symbol_jump_details(size_t jump_index) { |
| 219 | return reference_symbol_jumps[jump_index].first; |
nothing calls this directly
no outgoing calls
no test coverage detected