mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-12 17:37:13 +00:00
Mach-O/ARM: Add relocation type enumeration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121467 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e45256a06
commit
cdffa4fdc9
@ -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