aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20000420-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20000420-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20000420-2.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20000420-2.c b/gcc/testsuite/gcc.c-torture/compile/20000420-2.c
deleted file mode 100644
index 2d825f01992..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20000420-2.c
+++ /dev/null
@@ -1,11 +0,0 @@
-struct x { int a, b, c; };
-
-extern struct x a ();
-extern void b (struct x);
-
-void
-foo ()
-{
- a ();
- b (a ());
-}