diff options
author | Larisse Voufo <lvoufo@google.com> | 2015-02-18 01:04:10 +0000 |
---|---|---|
committer | Larisse Voufo <lvoufo@google.com> | 2015-02-18 01:04:10 +0000 |
commit | cb59dc90220c7b7d9145c67bc087cb32c53d77b4 (patch) | |
tree | b9241c59b2666a8c1bd82f6c37e6ac4f22b942c0 /lib/CodeGen/CodeGenModule.cpp | |
parent | 52d5a7bf5cc4c6967ad752ebbf181050a8bc45bb (diff) | |
download | clang-cb59dc90220c7b7d9145c67bc087cb32c53d77b4.tar.gz |
Rename flags and options to match current naming: from -fdef-sized-delete to -fdefine-sized-deallocation, and from DefaultSizedDelete to DefineSizedDeallocation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@229597 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 8404972fa0..92c1706a41 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -1624,7 +1624,7 @@ CodeGenModule::GetOrCreateLLVMFunction(StringRef MangledName, } else if (D && cast<FunctionDecl>(D) ->getCorrespondingUnsizedGlobalDeallocationFunction() && - getLangOpts().DefaultSizedDelete && + getLangOpts().DefineSizedDeallocation && !D->hasAttr<AliasAttr>()) { addDeferredDeclToEmit(F, GD); |