| 6 | #include "mdebug.h" |
| 7 | |
| 8 | struct MDebugSymbol { |
| 9 | std::string name; |
| 10 | uint32_t address; |
| 11 | uint32_t size; |
| 12 | bool is_func; |
| 13 | bool is_static; |
| 14 | bool is_bss; |
| 15 | bool is_rodata; |
| 16 | bool ignored; |
| 17 | }; |
| 18 | |
| 19 | struct MDebugFile { |
| 20 | std::string filename; |
nothing calls this directly
no outgoing calls
no test coverage detected