mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 09:13:34 +00:00
Mach-O/ARM: Add relocation type enumeration.
llvm-svn: 121467
This commit is contained in:
parent
599da0cadf
commit
37bc9a74ac
@ -340,6 +340,18 @@ namespace macho {
|
||||
RIT_X86_64_TLV = 9
|
||||
};
|
||||
|
||||
/// ARM also has its own relocation types.
|
||||
enum RelocationInfoTypeARM {
|
||||
RIT_ARM_Vanilla = 0,
|
||||
RIT_ARM_Pair = 1,
|
||||
RIT_ARM_Difference = 2,
|
||||
RIT_ARM_LocalDifference = 3,
|
||||
RIT_ARM_PreboundLazyPointer =4,
|
||||
RIT_ARM_Branch24Bit = 5,
|
||||
RIT_ARM_ThumbBranch22Bit = 6,
|
||||
RIT_ARM_ThumbBranch32Bit = 7
|
||||
};
|
||||
|
||||
} // end namespace macho
|
||||
|
||||
} // end namespace object
|
||||
|
Loading…
x
Reference in New Issue
Block a user