| 14 | #include "recompiler/generator.h" |
| 15 | |
| 16 | enum class JalResolutionResult { |
| 17 | NoMatch, |
| 18 | Match, |
| 19 | CreateStatic, |
| 20 | Ambiguous, |
| 21 | Error |
| 22 | }; |
| 23 | |
| 24 | JalResolutionResult resolve_jal(const N64Recomp::Context& context, size_t cur_section_index, uint32_t target_func_vram, size_t& matched_function_index) { |
| 25 | // Skip resolution if all function calls should use lookup and just return Ambiguous. |
nothing calls this directly
no outgoing calls
no test coverage detected