diff options
author | John McCall <rjmccall@apple.com> | 2011-07-12 00:15:30 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-07-12 00:15:30 +0000 |
commit | 5fcf8da33dfb9a54f047718223ddba16a263f6c1 (patch) | |
tree | 75ba783c9f84f57aaa7c8e5e0c1f667c1fe83d89 /clang/lib/CodeGen/CGCleanup.cpp | |
parent | cdc2297ee1475125b2b55edb61df14b722c2cc10 (diff) | |
download | bcm5719-llvm-5fcf8da33dfb9a54f047718223ddba16a263f6c1.tar.gz bcm5719-llvm-5fcf8da33dfb9a54f047718223ddba16a263f6c1.zip |
Do full-expression cleanups in a much more sensible way that still lets
people write useful cleanup classes.
llvm-svn: 134942
Diffstat (limited to 'clang/lib/CodeGen/CGCleanup.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGCleanup.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGCleanup.cpp b/clang/lib/CodeGen/CGCleanup.cpp index f75253bf788..4147c241c25 100644 --- a/clang/lib/CodeGen/CGCleanup.cpp +++ b/clang/lib/CodeGen/CGCleanup.cpp @@ -256,9 +256,7 @@ void CodeGenFunction::initFullExprCleanup() { if (cleanup.isEHCleanup()) cleanup.setTestFlagInEHCleanup(); } -EHScopeStack::Cleanup::~Cleanup() { - llvm_unreachable("Cleanup is indestructable"); -} +void EHScopeStack::Cleanup::anchor() {} /// All the branch fixups on the EH stack have propagated out past the /// outermost normal cleanup; resolve them all by adding cases to the |