]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20010403-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010403-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20010403-1.c b/gcc/testsuite/gcc.c-torture/execute/20010403-1.c
deleted file mode 100644 (file)
index 6a8f2a4..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-void b (int *);
-void c (int, int);
-void d (int);
-
-int e;
-
-void a (int x, int y)
-{
-  int f = x ? e : 0;
-  int z = y;
-
-  b (&y);
-  c (z, y);
-  d (f);
-}
-
-void b (int *y)
-{
-  (*y)++;
-}
-
-void c (int x, int y)
-{
-  if (x == y)
-    abort ();
-}
-
-void d (int x)
-{
-}
-
-int main (void)
-{
-  a (0, 0);
-  exit (0);
-}