diff options
author | John McCall <rjmccall@apple.com> | 2013-03-01 01:38:54 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2013-03-01 01:38:54 +0000 |
commit | e739a49325268ae69c0bbbb83d514e8de619eb18 (patch) | |
tree | 0f2a7fd4d9b9cafa15e1569ab51c3a7887176f69 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 07e60263dd4da550d3c38dee37cbc346dc2d9660 (diff) | |
download | bcm5719-llvm-e739a49325268ae69c0bbbb83d514e8de619eb18.tar.gz bcm5719-llvm-e739a49325268ae69c0bbbb83d514e8de619eb18.zip |
Restore order to placate test. I had no real reason to switch them.
llvm-svn: 176328
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index f955db637ca..cd738f0b385 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -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: |