forked from OSchip/llvm-project
CodeGen: Fix a typo in getThreadLocalWrapperLinkage
The description had a misspelling. No functionality change. llvm-svn: 211908
This commit is contained in:
parent
b91de7861c
commit
4632e1eec1
|
@ -1782,7 +1782,7 @@ void ItaniumCXXABI::registerGlobalDtor(CodeGenFunction &CGF,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the appropriate linkage for the wrapper function. This is essentially
|
/// 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.
|
/// the wrapper emits a copy, and we want the linker to merge them.
|
||||||
static llvm::GlobalValue::LinkageTypes
|
static llvm::GlobalValue::LinkageTypes
|
||||||
getThreadLocalWrapperLinkage(const VarDecl *VD, CodeGen::CodeGenModule &CGM) {
|
getThreadLocalWrapperLinkage(const VarDecl *VD, CodeGen::CodeGenModule &CGM) {
|
||||||
|
|
Loading…
Reference in New Issue