]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/931009-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 931009-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/931009-1.c b/gcc/testsuite/gcc.c-torture/execute/931009-1.c
deleted file mode 100644 (file)
index 2922280..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-main ()
-{
-  f ();
-  exit (0);
-}
-
-static
-g (out, size, lo, hi)
-     int *out, size, lo, hi;
-{
-  int j;
-
-  for (j = 0; j < size; j++)
-    out[j] = j * (hi - lo);
-}
-
-
-f ()
-{
-  int a[2];
-
-  g (a, 2, 0, 1);
-
-  if (a[0] != 0 || a[1] != 1)
-    abort ();
-}