diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 23:41:50 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 23:41:50 +0000 |
commit | 483699c2961f21b76914bbf8c1b5a29a3c15672b (patch) | |
tree | b3f5f850259c714d0916178bd335da3838f799d4 /test/FrontendC++/2006-03-06-C++RecurseCrash.cpp | |
parent | 93d39be5300702d8c9892ec04a492a6056926462 (diff) |
Remove migrated or obsolete tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2006-03-06-C++RecurseCrash.cpp')
-rw-r--r-- | test/FrontendC++/2006-03-06-C++RecurseCrash.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/test/FrontendC++/2006-03-06-C++RecurseCrash.cpp b/test/FrontendC++/2006-03-06-C++RecurseCrash.cpp deleted file mode 100644 index 2fb3fb7cdc..0000000000 --- a/test/FrontendC++/2006-03-06-C++RecurseCrash.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// RUN: %llvmgcc %s -S -o - -namespace std { - class exception { }; - - class type_info { - public: - virtual ~type_info(); - }; - -} - -namespace __cxxabiv1 { - class __si_class_type_info : public std::type_info { - ~__si_class_type_info(); - }; -} - -class recursive_init: public std::exception { -public: - virtual ~recursive_init() throw (); -}; - -recursive_init::~recursive_init() throw() { } - |