diff options
author | andreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-20 21:10:14 +0000 |
---|---|---|
committer | andreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-20 21:10:14 +0000 |
commit | 849b9f9144f92693c5c3b95ae5564d7c5c6f5809 (patch) | |
tree | fbabe5b04c55cbbc054fb84e7289293b53b733bc /libffi/testsuite | |
parent | 6b421feb1404049aaedeedac8e2df3414cf6534f (diff) | |
download | ppe42-gcc-849b9f9144f92693c5c3b95ae5564d7c5c6f5809.tar.gz ppe42-gcc-849b9f9144f92693c5c3b95ae5564d7c5c6f5809.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111314 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/testsuite')
-rw-r--r-- | libffi/testsuite/libffi.call/return_fl2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libffi/testsuite/libffi.call/return_fl2.c b/libffi/testsuite/libffi.call/return_fl2.c index d4bd3ded850..59b2d73f991 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; } |