]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/eh/filter2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / eh / filter2.C
diff --git a/gcc/testsuite/g++.dg/eh/filter2.C b/gcc/testsuite/g++.dg/eh/filter2.C
deleted file mode 100644 (file)
index fe87cc9..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-// Test that terminate gets run when a catch filter fails to match while
-// running destructors.  Original bug depended on a::~a being inlined.
-// { dg-do run }
-// { dg-options -O }
-
-#include <exception>
-#include <cstdlib>
-
-struct e1 {};
-struct e2 {};
-
-struct a
-{
-  a () { }
-
-  ~a ()
-    {
-      try
-       {
-         throw e1();
-       }
-      catch (e2 &)
-       {
-        }
-    }
-};
-
-void
-ex_test ()
-{
-  a aa;
-  try
-    {
-      throw e1 ();
-    }
-  catch (e2 &)
-    {
-    }
-}
-
-void my_terminate ()
-{
-  std::exit (0);
-}
-
-int
-main ()
-{
-  std::set_terminate (my_terminate);
-
-  try
-    {
-      ex_test ();
-    }
-  catch (...)
-    {
-    }
-  abort ();
-}