diff options
Diffstat (limited to 'clang/lib/CodeGen/CGCleanup.h')
-rw-r--r-- | clang/lib/CodeGen/CGCleanup.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/clang/lib/CodeGen/CGCleanup.h b/clang/lib/CodeGen/CGCleanup.h index 5a0145eb0b8..909f00b0592 100644 --- a/clang/lib/CodeGen/CGCleanup.h +++ b/clang/lib/CodeGen/CGCleanup.h @@ -587,14 +587,6 @@ inline void EHScopeStack::popTerminate() { deallocate(EHTerminateScope::getSize()); } -inline void EHScopeStack::popPadEnd() { - assert(!empty() && "popping exception stack when not empty"); - - EHPadEndScope &scope = cast<EHPadEndScope>(*begin()); - InnermostEHScope = scope.getEnclosingEHScope(); - deallocate(EHPadEndScope::getSize()); -} - inline EHScopeStack::iterator EHScopeStack::find(stable_iterator sp) const { assert(sp.isValid() && "finding invalid savepoint"); assert(sp.Size <= stable_begin().Size && "finding savepoint after pop"); |