diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-09-15 15:07:22 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-09-15 15:07:22 +0000 |
| commit | 6d4e4f85ddd0db366fd39c45d5044a46d8e26859 (patch) | |
| tree | 1b6b43be6628b81dcaafd18b8b8ccdc3a7a05440 /runtime/GCCLibraries/libexception/Exception.cpp | |
| parent | 22c83280584a63548563bb88db3b536c157d41cf (diff) | |
| download | external_llvm-6d4e4f85ddd0db366fd39c45d5044a46d8e26859.zip external_llvm-6d4e4f85ddd0db366fd39c45d5044a46d8e26859.tar.gz external_llvm-6d4e4f85ddd0db366fd39c45d5044a46d8e26859.tar.bz2 | |
Remove dead library, it is now folded into crtend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8532 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/GCCLibraries/libexception/Exception.cpp')
| -rw-r--r-- | runtime/GCCLibraries/libexception/Exception.cpp | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/runtime/GCCLibraries/libexception/Exception.cpp b/runtime/GCCLibraries/libexception/Exception.cpp deleted file mode 100644 index 156b714..0000000 --- a/runtime/GCCLibraries/libexception/Exception.cpp +++ /dev/null @@ -1,57 +0,0 @@ -//===- Exception.cpp - Generic language-independent exceptions ------------===// -// -// This file defines the the shared data structures used by all language -// specific exception handling runtime libraries. -// -//===----------------------------------------------------------------------===// - -#include "Exception.h" -#include <cassert> - -// Thread local state for exception handling. FIXME: This should really be made -// thread-local! - -// UncaughtExceptionStack - The stack of exceptions currently being thrown. -static llvm_exception *UncaughtExceptionStack = 0; - -// __llvm_eh_has_uncaught_exception - This is used to implement -// std::uncaught_exception. -// -bool __llvm_eh_has_uncaught_exception() throw() { - return UncaughtExceptionStack != 0; -} - -// __llvm_eh_current_uncaught_exception - This function checks to see if the -// current uncaught exception is of the specified language type. If so, it -// returns a pointer to the exception area data. -// -void *__llvm_eh_current_uncaught_exception_type(unsigned HandlerType) throw() { - assert(UncaughtExceptionStack && "No uncaught exception!"); - if (UncaughtExceptionStack->ExceptionType == HandlerType) - return UncaughtExceptionStack+1; - return 0; -} - -// __llvm_eh_add_uncaught_exception - This adds the specified exception to the -// top of the uncaught exception stack. The exception should not already be on -// the stack! -void __llvm_eh_add_uncaught_exception(llvm_exception *E) throw() { - E->Next = UncaughtExceptionStack; - UncaughtExceptionStack = E; -} - - -// __llvm_eh_get_uncaught_exception - Returns the current uncaught exception. -// There must be an uncaught exception for this to work! -llvm_exception *__llvm_eh_get_uncaught_exception() throw() { - assert(UncaughtExceptionStack && "There are no uncaught exceptions!?!?"); - return UncaughtExceptionStack; -} - -// __llvm_eh_pop_from_uncaught_stack - Remove the current uncaught exception -// from the top of the stack. -llvm_exception *__llvm_eh_pop_from_uncaught_stack() throw() { - llvm_exception *E = __llvm_eh_get_uncaught_exception(); - UncaughtExceptionStack = E->Next; - return E; -} |
