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
diff --git a/lib/CodeGen/CGDeclCXX.cpp b/lib/CodeGen/CGDeclCXX.cpp
index f16a0b3..0293c5c 100644
--- a/lib/CodeGen/CGDeclCXX.cpp
+++ b/lib/CodeGen/CGDeclCXX.cpp
@@ -330,7 +330,7 @@
 }
 
 namespace {
-  struct CallGuardAbort : EHScopeStack::LazyCleanup {
+  struct CallGuardAbort : EHScopeStack::Cleanup {
     llvm::GlobalVariable *Guard;
     CallGuardAbort(llvm::GlobalVariable *Guard) : Guard(Guard) {}
 
@@ -388,7 +388,7 @@
   
     // Call __cxa_guard_abort along the exceptional edge.
     if (Exceptions)
-      EHStack.pushLazyCleanup<CallGuardAbort>(EHCleanup, GuardVariable);
+      EHStack.pushCleanup<CallGuardAbort>(EHCleanup, GuardVariable);
     
     EmitBlock(InitBlock);
   }