]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/eh/loop1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / eh / loop1.C
diff --git a/gcc/testsuite/g++.dg/eh/loop1.C b/gcc/testsuite/g++.dg/eh/loop1.C
deleted file mode 100644 (file)
index b9b230e..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// Verify that loop optimization takes into account the exception edge
-// and does not increment I before the call.
-// { dg-do run }
-// { dg-options "-O2" }
-
-extern "C" void abort();
-static void bar(char *);
-
-static void foo(unsigned long element_count, char *ptr)
-{
-  unsigned long i;
-  try {
-    for (i = 0; i != element_count; i++, ptr += 8)
-      bar (ptr);
-  }
-  catch (...) {
-    if (i)
-      abort ();
-  }
-}
-
-static void bar(char *)
-{
-  throw 1;
-}
-
-int main()
-{
-  foo(2, 0);
-}