summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2014-06-27 16:56:27 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2014-06-27 16:56:27 +0000
commita7effd2e25558b216d02389d3ee655173ffcea6e (patch)
tree8316d258db9aabaa52c3549a56d552bca096ded3
parent0cebf9262b4ab79d9c8780e61dee504d6a15986a (diff)
downloadclang-a7effd2e25558b216d02389d3ee655173ffcea6e.tar.gz
clang-a7effd2e25558b216d02389d3ee655173ffcea6e.tar.bz2
clang-a7effd2e25558b216d02389d3ee655173ffcea6e.tar.xz
CodeGen: Fix a typo in getThreadLocalWrapperLinkage
The description had a misspelling. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211908 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/ItaniumCXXABI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ItaniumCXXABI.cpp b/lib/CodeGen/ItaniumCXXABI.cpp
index 38d49d134e..d5e1daeb12 100644
--- a/lib/CodeGen/ItaniumCXXABI.cpp
+++ b/lib/CodeGen/ItaniumCXXABI.cpp
@@ -1782,7 +1782,7 @@ void ItaniumCXXABI::registerGlobalDtor(CodeGenFunction &CGF,
}
/// 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) {