[lld] r252178 - Remove redundant namespace specifiers.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 5 10:13:26 PST 2015
Author: ruiu
Date: Thu Nov 5 12:13:25 2015
New Revision: 252178
URL: http://llvm.org/viewvc/llvm-project?rev=252178&view=rev
Log:
Remove redundant namespace specifiers.
Modified:
lld/trunk/ELF/Target.cpp
Modified: lld/trunk/ELF/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Target.cpp?rev=252178&r1=252177&r2=252178&view=diff
==============================================================================
--- lld/trunk/ELF/Target.cpp (original)
+++ lld/trunk/ELF/Target.cpp Thu Nov 5 12:13:25 2015
@@ -340,7 +340,7 @@ void X86_64TargetInfo::relocateOne(uint8
write32le(Loc, SA);
break;
case R_X86_64_TPOFF32: {
- uint64_t Val = SA - Out<llvm::object::ELF64LE>::TlsInitImageAlignedSize;
+ uint64_t Val = SA - Out<ELF64LE>::TlsInitImageAlignedSize;
if (!isInt<32>(Val))
error("R_X86_64_TPOFF32 out of range");
write32le(Loc, Val);
More information about the llvm-commits
mailing list