[llvm] r267378 - [Support/ELFRelocs] Add R_386_GOT32X.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 24 21:38:09 PDT 2016
Author: davide
Date: Sun Apr 24 23:38:08 2016
New Revision: 267378
URL: http://llvm.org/viewvc/llvm-project?rev=267378&view=rev
Log:
[Support/ELFRelocs] Add R_386_GOT32X.
The new relocation recently defined in the Intel386 psABI
was still missing from this file. A subsequent commit will
add support for GOT32X in MC, together with a test.
Modified:
llvm/trunk/include/llvm/Support/ELFRelocs/i386.def
Modified: llvm/trunk/include/llvm/Support/ELFRelocs/i386.def
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/ELFRelocs/i386.def?rev=267378&r1=267377&r2=267378&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/ELFRelocs/i386.def (original)
+++ llvm/trunk/include/llvm/Support/ELFRelocs/i386.def Sun Apr 24 23:38:08 2016
@@ -44,4 +44,5 @@ ELF_RELOC(R_386_TLS_GOTDESC, 39)
ELF_RELOC(R_386_TLS_DESC_CALL, 40)
ELF_RELOC(R_386_TLS_DESC, 41)
ELF_RELOC(R_386_IRELATIVE, 42)
-ELF_RELOC(R_386_NUM, 43)
+ELF_RELOC(R_386_GOT32X, 43)
+ELF_RELOC(R_386_NUM, 44)
More information about the llvm-commits
mailing list