diff options
| author | Fangrui Song <maskray@google.com> | 2019-04-22 02:48:37 +0000 |
|---|---|---|
| committer | Fangrui Song <maskray@google.com> | 2019-04-22 02:48:37 +0000 |
| commit | e1f3191a0d03a60d41feed18fef3c6b888ff0ceb (patch) | |
| tree | 87e49c3e76c67ccc678fe769cd9eab575198ca1e /lld/ELF/InputSection.cpp | |
| parent | 4ad27e65cd60c506535dce5554a6f2f71cb4d13c (diff) | |
| download | bcm5719-llvm-e1f3191a0d03a60d41feed18fef3c6b888ff0ceb.tar.gz bcm5719-llvm-e1f3191a0d03a60d41feed18fef3c6b888ff0ceb.zip | |
[ELF][X86] Rename R_RELAX_TLS_GD_TO_IE_END to R_RELAX_TLS_GD_TO_IE_GOTPLT
Summary:
This relocation type is used by R_386_TLS_GD. Its formula is the same as
R_GOTPLT (e.g R_X86_64_GOT{32,64} R_386_TLS_GOTIE). Rename it to be clearer.
Differential Revision: https://reviews.llvm.org/D60941
llvm-svn: 358868
Diffstat (limited to 'lld/ELF/InputSection.cpp')
| -rw-r--r-- | lld/ELF/InputSection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 0ed3a70156f..a32015f4b14 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -632,7 +632,7 @@ static uint64_t getRelocTargetVA(const InputFile *File, RelType Type, int64_t A, case R_GOTPLTREL: return Sym.getVA(A) - In.GotPlt->getVA(); case R_GOTPLT: - case R_RELAX_TLS_GD_TO_IE_END: + case R_RELAX_TLS_GD_TO_IE_GOTPLT: return Sym.getGotVA() + A - In.GotPlt->getVA(); case R_TLSLD_GOT_OFF: case R_GOT_OFF: @@ -908,7 +908,7 @@ void InputSectionBase::relocateAlloc(uint8_t *Buf, uint8_t *BufEnd) { case R_RELAX_TLS_GD_TO_IE: case R_RELAX_TLS_GD_TO_IE_ABS: case R_RELAX_TLS_GD_TO_IE_GOT_OFF: - case R_RELAX_TLS_GD_TO_IE_END: + case R_RELAX_TLS_GD_TO_IE_GOTPLT: Target->relaxTlsGdToIe(BufLoc, Type, TargetVA); break; case R_PPC_CALL: |

