forked from OSchip/llvm-project
[PowerPC] Add R_PPC64_GLOB_DAT and R_PPC64_RELATIVE to PowerPC64.def
These are not used by LLVM proper, but will be used by upcoming commits to lld (and will receive test coverage there). llvm-svn: 249714
This commit is contained in:
parent
3bf22b1883
commit
e5d3ac8240
|
@ -26,7 +26,9 @@
|
|||
#undef R_PPC64_GOT16_LO
|
||||
#undef R_PPC64_GOT16_HI
|
||||
#undef R_PPC64_GOT16_HA
|
||||
#undef R_PPC64_GLOB_DAT
|
||||
#undef R_PPC64_JMP_SLOT
|
||||
#undef R_PPC64_RELATIVE
|
||||
#undef R_PPC64_REL32
|
||||
#undef R_PPC64_ADDR64
|
||||
#undef R_PPC64_ADDR16_HIGHER
|
||||
|
@ -110,7 +112,9 @@ ELF_RELOC(R_PPC64_GOT16, 14)
|
|||
ELF_RELOC(R_PPC64_GOT16_LO, 15)
|
||||
ELF_RELOC(R_PPC64_GOT16_HI, 16)
|
||||
ELF_RELOC(R_PPC64_GOT16_HA, 17)
|
||||
ELF_RELOC(R_PPC64_GLOB_DAT, 20)
|
||||
ELF_RELOC(R_PPC64_JMP_SLOT, 21)
|
||||
ELF_RELOC(R_PPC64_RELATIVE, 22)
|
||||
ELF_RELOC(R_PPC64_REL32, 26)
|
||||
ELF_RELOC(R_PPC64_ADDR64, 38)
|
||||
ELF_RELOC(R_PPC64_ADDR16_HIGHER, 39)
|
||||
|
|
Loading…
Reference in New Issue