]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000722-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000722-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000722-1.c b/gcc/testsuite/gcc.c-torture/execute/20000722-1.c
deleted file mode 100644 (file)
index 0ce3191..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-struct s { char *p; int t; };
-
-extern void bar (void);
-extern void foo (struct s *);
-
-int main(void)
-{
-  bar ();
-  bar ();
-  exit (0);
-}
-
-void 
-bar (void)
-{
-  foo (& (struct s) { "hi", 1 });
-}
-
-void foo (struct s *p)
-{
-  if (p->t != 1)
-    abort();
-  p->t = 2;
-}