diff options
author | Andreas Tobler <a.tobler@schweiz.ch> | 2006-02-20 22:10:14 +0100 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2006-02-20 22:10:14 +0100 |
commit | 723e5d5a24fee2eeb1d9cbaa808d4b8c68e90671 (patch) | |
tree | fbabe5b04c55cbbc054fb84e7289293b53b733bc /libffi | |
parent | 0ff4040e026ae3e9ffb6ff58f195944ef8a41249 (diff) | |
download | gcc-723e5d5a24fee2eeb1d9cbaa808d4b8c68e90671.zip gcc-723e5d5a24fee2eeb1d9cbaa808d4b8c68e90671.tar.gz gcc-723e5d5a24fee2eeb1d9cbaa808d4b8c68e90671.tar.bz2 |
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
Diffstat (limited to 'libffi')
-rw-r--r-- | libffi/ChangeLog | 5 | ||||
-rw-r--r-- | libffi/testsuite/libffi.call/return_fl2.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libffi/ChangeLog b/libffi/ChangeLog index 2ed033e..9644f1b 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,8 @@ +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> * src/sh/ffi.c (ffi_closure_helper_SYSV): Remove unused variable diff --git a/libffi/testsuite/libffi.call/return_fl2.c b/libffi/testsuite/libffi.call/return_fl2.c index d4bd3de..59b2d73 100644 --- a/libffi/testsuite/libffi.call/return_fl2.c +++ b/libffi/testsuite/libffi.call/return_fl2.c @@ -7,7 +7,7 @@ /* { dg-do run } */ #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; } |