]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/eh3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / eh3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/eh3.C b/gcc/testsuite/g++.old-deja/g++.other/eh3.C
deleted file mode 100644 (file)
index 28c4fd7..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-// Special g++ Options: -O
-typedef struct { } e;
-
-char *p;
-
-void _Jv_throw ();
-
-int barf (int len)
-{
-  char a[len];
-
-  p = a;
-  _Jv_throw ();
-  return 0;
-}
-
-void _Jv_throw ()
-{
-  e ex;
-  throw ex;
-}  
-
-int main ()
-{
-  try  {
-    barf (2);
-  }
-  catch (...) {
-  }
-
-  return 0;
-}