diff options
author | Larisse Voufo <lvoufo@google.com> | 2015-02-15 08:47:33 +0000 |
---|---|---|
committer | Larisse Voufo <lvoufo@google.com> | 2015-02-15 08:47:33 +0000 |
commit | fbe56a052984587eb8307f6e53fc4300d5514a19 (patch) | |
tree | 7c74499e31c913629be5ac9cf048f9dde12ad24b | |
parent | 04232a038b496a6348924c912d4f5681f4e116bd (diff) | |
download | llvm-fbe56a052984587eb8307f6e53fc4300d5514a19.zip llvm-fbe56a052984587eb8307f6e53fc4300d5514a19.tar.gz llvm-fbe56a052984587eb8307f6e53fc4300d5514a19.tar.bz2 |
Fix a typo in r229291 causing buildbot failure.
llvm-svn: 229295
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index ea7da8c..711184b 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1622,7 +1622,7 @@ CodeGenModule::GetOrCreateLLVMFunction(StringRef MangledName, } else if (D && cast<FunctionDecl>(D) ->getCorrespondingUnsizedGlobalDeallocationFunction() && - !getLangOpts().DefaultSizedDelete && + getLangOpts().DefaultSizedDelete && !D->hasAttr<AliasAttr>()) { addDeferredDeclToEmit(F, GD); |