]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20021219-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20021219-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20021219-1.c b/gcc/testsuite/gcc.c-torture/execute/20021219-1.c
deleted file mode 100644 (file)
index 2e658a5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* PR optimization/8988 */
-/* Contributed by Kevin Easton */
-
-void foo(char *p1, char **p2)
-{}
-int main(void)
-{
-  char str[] = "foo { xx }";
-  char *ptr = str + 5;
-
-  foo(ptr, &ptr);
-
-  while (*ptr && (*ptr == 13 || *ptr == 32))
-    ptr++;
-
-  return 0;
-}