2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / libffi.call / return_ldl.c
blob5c2fe65aece065619036fea6248a92967942f10f
1 /* Area: ffi_call
2 Purpose: Check return value long double.
3 Limitations: none.
4 PR: none.
5 Originator: <andreast@gcc.gnu.org> 20071113 */
7 /* { dg-do run { xfail x86_64-*-mingw* x86_64-*-cygwin* } } */
8 #include "ffitest.h"
10 static long double return_ldl(long double ldl)
12 return 2*ldl;
14 int main (void)
16 ffi_cif cif;
17 ffi_type *args[MAX_ARGS];
18 void *values[MAX_ARGS];
19 long double ldl, rldl;
21 args[0] = &ffi_type_longdouble;
22 values[0] = &ldl;
24 /* Initialize the cif */
25 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
26 &ffi_type_longdouble, args) == FFI_OK);
28 for (ldl = -127.0; ldl < 127.0; ldl++)
30 ffi_call(&cif, FFI_FN(return_ldl), &rldl, values);
31 CHECK(rldl == 2 * ldl);
33 exit(0);