r176328 - Restore order to placate test. I had no real reason to switch them.
John McCall
rjmccall at apple.com
Thu Feb 28 17:38:54 PST 2013
Author: rjmccall
Date: Thu Feb 28 19:38:54 2013
New Revision: 176328
URL: http://llvm.org/viewvc/llvm-project?rev=176328&view=rev
Log:
Restore order to placate test. I had no real reason to switch them.
Modified:
cfe/trunk/lib/CodeGen/CodeGenFunction.h
Modified: cfe/trunk/lib/CodeGen/CodeGenFunction.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenFunction.h?rev=176328&r1=176327&r2=176328&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenFunction.h (original)
+++ cfe/trunk/lib/CodeGen/CodeGenFunction.h Thu Feb 28 19:38:54 2013
@@ -863,8 +863,8 @@ public:
/// \brief Force the emission of cleanups now, instead of waiting
/// until this object is destroyed.
void ForceCleanup() {
- endLexicalScope();
RunCleanupsScope::ForceCleanup();
+ endLexicalScope();
}
private:
More information about the cfe-commits
mailing list