Skip to content
Snippets Groups Projects
Commit 723e5d5a authored by Andreas Tobler's avatar Andreas Tobler Committed by Andreas Tobler
Browse files

libffi: testsuite fix for ix86.

2006-02-20  Andreas Tobler  <a.tobler@schweiz.ch>

	* testsuite/libffi.call/return_fl2.c (return_fl): Remove static
	declaration to avoid a false negative on ix86. See PR323.

From-SVN: r111314
parent 0ff4040e
No related branches found
No related tags found
No related merge requests found
2006-02-20 Andreas Tobler <a.tobler@schweiz.ch>
* testsuite/libffi.call/return_fl2.c (return_fl): Remove static
declaration to avoid a false negative on ix86. See PR323.
2006-02-18 Kaz Kojima <kkojima@gcc.gnu.org> 2006-02-18 Kaz Kojima <kkojima@gcc.gnu.org>
* src/sh/ffi.c (ffi_closure_helper_SYSV): Remove unused variable * src/sh/ffi.c (ffi_closure_helper_SYSV): Remove unused variable
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
/* { dg-do run } */ /* { dg-do run } */
#include "ffitest.h" #include "ffitest.h"
static float return_fl(float fl1, float fl2, float fl3, float fl4) float return_fl(float fl1, float fl2, float fl3, float fl4)
{ {
return fl1 + fl2 + fl3 + fl4; return fl1 + fl2 + fl3 + fl4;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment