| 54 | }; |
| 55 | |
| 56 | enum class RelocType : uint8_t { |
| 57 | R_MIPS_NONE = 0, |
| 58 | R_MIPS_16, |
| 59 | R_MIPS_32, |
| 60 | R_MIPS_REL32, |
| 61 | R_MIPS_26, |
| 62 | R_MIPS_HI16, |
| 63 | R_MIPS_LO16, |
| 64 | R_MIPS_GPREL16, |
| 65 | }; |
| 66 | |
| 67 | struct Reloc { |
| 68 | uint32_t address; |
nothing calls this directly
no outgoing calls
no test coverage detected