]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/960327-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960327-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/960327-1.c b/gcc/testsuite/gcc.c-torture/execute/960327-1.c
deleted file mode 100644 (file)
index bc82cb5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <stdio.h>
-g ()
-{
-  return '\n';
-}
-
-f ()
-{
-  char s[] = "abcedfg012345";
-  char *sp = s + 12;
-
-  switch (g ())
-    {
-      case '\n':
-        break;
-    }
-
-  while (*--sp == '0')
-    ;
-  sprintf (sp + 1, "X");
-
-  if (s[12] != 'X')
-    abort ();
-}
-
-main ()
-{
-  f ();
-  exit (0);
-}