From: H.J. Lu Date: Thu, 3 Jul 2008 12:19:37 +0000 (+0000) Subject: struct-by-value-17a_main.c: Remove duplicated code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dbcc32740ab15c5eff9d55e6472171fc8dd2d0af;p=gcc.git struct-by-value-17a_main.c: Remove duplicated code. 2008-07-03 H.J. Lu * gcc.dg/compat/struct-by-value-17a_main.c: Remove duplicated code. From-SVN: r137417 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a511bfd2bed..8cbba25332a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2008-07-03 H.J. Lu + + * gcc.dg/compat/struct-by-value-17a_main.c: Remove duplicated + code. + 2008-07-03 H.J. Lu Uros Bizjak diff --git a/gcc/testsuite/gcc.dg/compat/struct-by-value-17a_main.c b/gcc/testsuite/gcc.dg/compat/struct-by-value-17a_main.c index 09746a9d67b..1db00215f2c 100644 --- a/gcc/testsuite/gcc.dg/compat/struct-by-value-17a_main.c +++ b/gcc/testsuite/gcc.dg/compat/struct-by-value-17a_main.c @@ -12,17 +12,3 @@ main () struct_by_value_17a_x (); exit (0); } -/* Test structures passed by value, including to a function with a - variable-length argument lists. All struct members are of type - _Complex double. */ - -extern void struct_by_value_17_x (void); -extern void exit (int); -int fails; - -int -main () -{ - struct_by_value_17a_x (); - exit (0); -}