diff options
author | John McCall <rjmccall@apple.com> | 2010-07-21 07:22:38 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-07-21 07:22:38 +0000 |
commit | 1f0fca54676cfa8616e7f3cd7a26788ab937e3cd (patch) | |
tree | ad3a5f3125eb40942775fc00cd6d9fdc9a052c5c /lib/CodeGen/CGDeclCXX.cpp | |
parent | 7495f22934d577c71b4b5bae82142ad54ccb1d59 (diff) |
Rename LazyCleanup -> Cleanup. No functionality change for these last three
commits.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109000 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDeclCXX.cpp')
-rw-r--r-- | lib/CodeGen/CGDeclCXX.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGDeclCXX.cpp b/lib/CodeGen/CGDeclCXX.cpp index f16a0b3fbd..0293c5c125 100644 --- a/lib/CodeGen/CGDeclCXX.cpp +++ b/lib/CodeGen/CGDeclCXX.cpp @@ -330,7 +330,7 @@ static llvm::Constant *getGuardAbortFn(CodeGenFunction &CGF) { } namespace { - struct CallGuardAbort : EHScopeStack::LazyCleanup { + struct CallGuardAbort : EHScopeStack::Cleanup { llvm::GlobalVariable *Guard; CallGuardAbort(llvm::GlobalVariable *Guard) : Guard(Guard) {} @@ -388,7 +388,7 @@ CodeGenFunction::EmitStaticCXXBlockVarDeclInit(const VarDecl &D, // Call __cxa_guard_abort along the exceptional edge. if (Exceptions) - EHStack.pushLazyCleanup<CallGuardAbort>(EHCleanup, GuardVariable); + EHStack.pushCleanup<CallGuardAbort>(EHCleanup, GuardVariable); EmitBlock(InitBlock); } |