]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/951204-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 951204-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/951204-1.c b/gcc/testsuite/gcc.c-torture/execute/951204-1.c
deleted file mode 100644 (file)
index c4d585b..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-f (char *x)
-{
-  *x = 'x';
-}
-
-main ()
-{
-  int i;
-  char x = '\0';
-
-  for (i = 0; i < 100; ++i)
-    {
-      f (&x);
-      if (*(const char *) &x != 'x')
-       abort ();
-    }
-  exit (0);
-}