]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/950621-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950621-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/950621-1.c b/gcc/testsuite/gcc.c-torture/execute/950621-1.c
deleted file mode 100644 (file)
index 5fc5a90..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-struct s
-{
-  int a;
-  int b;
-  struct s *dummy;
-};
-
-f (struct s *sp)
-{
-  return sp && sp->a == -1 && sp->b == -1;
-}
-
-main ()
-{
-  struct s x;
-  x.a = x.b = -1;
-  if (f (&x) == 0)
-    abort ();
-  exit (0);
-}