]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20010912-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20010912-1.c
diff --git a/gcc/testsuite/gcc.dg/20010912-1.c b/gcc/testsuite/gcc.dg/20010912-1.c
deleted file mode 100644 (file)
index 9d0d2e0..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/* { dg-do run } */
-/* { dg-options "-O2 -fpic" } */
-/* { dg-warning "not supported" "PIC unsupported" { target cris-*-elf* cris-*-aout* mmix-*-* } 0 } */
-
-extern void abort (void);
-extern void exit (int);
-
-int bar (int x, char **y)
-{
-  if (x != 56)
-    abort ();
-  if (**y != 'a')
-    abort ();
-  *y = "def";
-  return 1;
-}
-
-int baz (int x, char **y)
-{
-  if (x != 56)
-    abort ();
-  if (**y != 'a')
-    abort ();
-  return 26;
-}
-
-int foo (int x, char *y)
-{
-  int a;
-  char *b = y;
-  a = bar (x, &y);
-  if (a)
-    {
-      y = b;
-      a = baz (x, &y);
-    }
-  if (a)
-    return a;
-
-  baz (x, &y);
-  return 0;
-}
-
-int main ()
-{
-  if (foo (56, "abc") != 26)
-    abort ();
-  exit (0);
-}