| 660 | #endif |
| 661 | |
| 662 | bool N64Recomp::MDebug::parse_mdebug(const N64Recomp::ElfParsingConfig& elf_config, const char* mdebug_section, uint32_t mdebug_offset, N64Recomp::Context& context, N64Recomp::DataSymbolMap& data_syms) { |
| 663 | MDebugInfo mdebug_info{ elf_config, mdebug_section, mdebug_offset }; |
| 664 | |
| 665 | if (!mdebug_info.populate_context(elf_config, context, data_syms)) { |
| 666 | return false; |
| 667 | } |
| 668 | |
| 669 | return true; |
| 670 | } |
nothing calls this directly
no test coverage detected