]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930406-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930406-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930406-1.c b/gcc/testsuite/gcc.c-torture/execute/930406-1.c
deleted file mode 100644 (file)
index 9728eab..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-f()
-{
-  int x = 1;
-#if defined(STACK_SIZE)
-  char big[STACK_SIZE/2];
-#else
-  char big[0x1000];
-#endif
-
-  ({
-    __label__ mylabel;
-  mylabel:
-    x++;
-    if (x != 3)
-      goto mylabel;
-  });
-  exit(0);
-}
-
-main()
-{
-  f();
-}