| 65 | }; |
| 66 | |
| 67 | struct Reloc { |
| 68 | uint32_t address; |
| 69 | uint32_t target_section_offset; |
| 70 | uint32_t symbol_index; // Only used for reference symbols and special section symbols |
| 71 | uint16_t target_section; |
| 72 | RelocType type; |
| 73 | bool reference_symbol; |
| 74 | }; |
| 75 | |
| 76 | // Special section indices. |
| 77 | constexpr uint16_t SectionAbsolute = (uint16_t)-2; |
nothing calls this directly
no outgoing calls
no test coverage detected