From c55b4e25f4ad3f029f2c016cabbe68396f20f1fe Mon Sep 17 00:00:00 2001 From: George Rimar Date: Mon, 7 Dec 2015 16:54:56 +0000 Subject: [PATCH] [ELF] - fixed mistype in comment, NFC. llvm-svn: 254918 --- lld/ELF/Target.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/Target.cpp b/lld/ELF/Target.cpp index fe8b0b71ed20..b480e63726ad 100644 --- a/lld/ELF/Target.cpp +++ b/lld/ELF/Target.cpp @@ -566,7 +566,7 @@ void X86_64TargetInfo::relocateTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd, } // In some conditions, R_X86_64_GOTTPOFF relocation can be optimized to -// R_X86_64_TPOFF32 so that R_X86_64_TPOFF32 so that it does not use GOT. +// R_X86_64_TPOFF32 so that it does not use GOT. // This function does that. Read "ELF Handling For Thread-Local Storage, // 5.5 x86-x64 linker optimizations" (http://www.akkadia.org/drepper/tls.pdf) // by Ulrich Drepper for details.