aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c
diff options
context:
space:
mode:
authorNo Author <no-author@gcc.gnu.org>2004-07-01 18:49:52 +0000
committerNo Author <no-author@gcc.gnu.org>2004-07-01 18:49:52 +0000
commitee38c945c279685571303419df9f7421efbf62df (patch)
tree1ec03993a5349fe0414db5e4510a8cbe89435100 /gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c
parente877183a5f1942aa909d0a96fb70a9b64b402b48 (diff)
This commit was manufactured by cvs2svn to create tagreleases/gcc-3.4.1
'gcc_3_4_1_release'. From-SVN: r83996
Diffstat (limited to 'gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c')
-rw-r--r--gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c b/gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c
deleted file mode 100644
index cd9065920f6..00000000000
--- a/gcc/testsuite/gcc.dg/compat/union-by-value-1_main.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* Test function argument passing. This was written when correcting
- a deviation from the ABI on SPARC64 between 3.3 and 3.4. */
-
-extern void union_by_value_1_x (void);
-extern void exit (int);
-int fails;
-
-int
-main ()
-{
- union_by_value_1_x ();
- exit (0);
-}