r211908 - CodeGen: Fix a typo in getThreadLocalWrapperLinkage
David Majnemer
david.majnemer at gmail.com
Fri Jun 27 09:56:27 PDT 2014
Author: majnemer
Date: Fri Jun 27 11:56:27 2014
New Revision: 211908
URL: http://llvm.org/viewvc/llvm-project?rev=211908&view=rev
Log:
CodeGen: Fix a typo in getThreadLocalWrapperLinkage
The description had a misspelling. No functionality change.
Modified:
cfe/trunk/lib/CodeGen/ItaniumCXXABI.cpp
Modified: cfe/trunk/lib/CodeGen/ItaniumCXXABI.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/ItaniumCXXABI.cpp?rev=211908&r1=211907&r2=211908&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/ItaniumCXXABI.cpp (original)
+++ cfe/trunk/lib/CodeGen/ItaniumCXXABI.cpp Fri Jun 27 11:56:27 2014
@@ -1782,7 +1782,7 @@ void ItaniumCXXABI::registerGlobalDtor(C
}
/// Get the appropriate linkage for the wrapper function. This is essentially
-/// the weak form of the variable's linkage; every translation unit which wneeds
+/// the weak form of the variable's linkage; every translation unit which needs
/// the wrapper emits a copy, and we want the linker to merge them.
static llvm::GlobalValue::LinkageTypes
getThreadLocalWrapperLinkage(const VarDecl *VD, CodeGen::CodeGenModule &CGM) {
More information about the cfe-commits
mailing list