]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000707-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000707-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000707-1.c b/gcc/testsuite/gcc.c-torture/execute/20000707-1.c
deleted file mode 100644 (file)
index f1c50a9..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-extern void abort(void);
-extern void exit(int);
-
-struct baz {
-  int a, b, c;
-};
-
-void
-foo (int a, int b, int c)
-{
-  if (a != 4)
-    abort ();
-}
-
-void
-bar (struct baz x, int b, int c)
-{
-  foo (x.b, b, c);
-}
-
-int
-main ()
-{
-  struct baz x = { 3, 4, 5 };
-  bar (x, 1, 2);
-  exit (0);
-}