]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/921017-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921017-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/921017-1.c b/gcc/testsuite/gcc.c-torture/execute/921017-1.c
deleted file mode 100644 (file)
index ab68fc0..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-f(n)
-{
-  int a[n];
-  int g(i)
-    {
-      return a[i];
-    }
-  a[1]=4711;
-  return g(1);
-}
-main()
-{
-#ifndef NO_TRAMPOLINES
-  if(f(2)!=4711)abort();
-#endif
-  exit(0);
-}