ffi.c (ffi_prep_cif_machdep): Fix case where DOUBLE equal LONGDOUBLE.
2013-02-06 Andreas Tobler <andreast@fgznet.ch> * src/powerpc/ffi.c (ffi_prep_cif_machdep): Fix case where DOUBLE equal LONGDOUBLE. From-SVN: r195812
This commit is contained in:
parent
143c83f11b
commit
8f093ea0b1
@ -1,3 +1,8 @@
|
||||
2013-02-06 Andreas Tobler <andreast@fgznet.ch>
|
||||
|
||||
* src/powerpc/ffi.c (ffi_prep_cif_machdep): Fix case where
|
||||
DOUBLE equal LONGDOUBLE.
|
||||
|
||||
2013-01-07 Thorsten Glaser <tg@mirbsd.org>
|
||||
|
||||
* testsuite/libffi.call/cls_uchar_va.c,
|
||||
|
@ -664,9 +664,11 @@ ffi_prep_cif_machdep (ffi_cif *cif)
|
||||
switch (type)
|
||||
{
|
||||
#ifndef __NO_FPRS__
|
||||
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
||||
case FFI_TYPE_LONGDOUBLE:
|
||||
flags |= FLAG_RETURNS_128BITS;
|
||||
/* Fall through. */
|
||||
#endif
|
||||
case FFI_TYPE_DOUBLE:
|
||||
flags |= FLAG_RETURNS_64BITS;
|
||||
/* Fall through. */
|
||||
|
Loading…
Reference in New Issue
Block a user