mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
llvm-readobj: add IMAGE_REL_ARM_MOV32(T) to the enumeration
Add an additional based relocation to the enumeration of based relocation names. The lack of the enumerator value causes issues when inspecting WoA binaries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d4bdb4e0b2
commit
972a75df89
@ -1107,6 +1107,7 @@ static StringRef getBaseRelocTypeName(uint8_t Type) {
|
||||
case COFF::IMAGE_REL_BASED_LOW: return "LOW";
|
||||
case COFF::IMAGE_REL_BASED_HIGHLOW: return "HIGHLOW";
|
||||
case COFF::IMAGE_REL_BASED_HIGHADJ: return "HIGHADJ";
|
||||
case COFF::IMAGE_REL_BASED_ARM_MOV32T: return "ARM_MOV32(T)";
|
||||
case COFF::IMAGE_REL_BASED_DIR64: return "DIR64";
|
||||
default: return "unknown (" + llvm::utostr(Type) + ")";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user