2003-11-08 Andreas Tobler <a.tobler@schweiz.ch>
[official-gcc.git] / libffi / testsuite / libffi.call / cls_double.c
blob2bfc6432f2f6c8f7084ebc17ca76274c4d1fced3
1 /* Area: closure_call
2 Purpose: Check return value double.
3 Limitations: none.
4 PR: none.
5 Originator: <andreast@gcc.gnu.org> 20030828 */
7 /* { dg-do run { xfail mips*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
8 #include "ffitest.h"
10 static void cls_ret_double_fn(ffi_cif* cif,void* resp,void** args,
11 void* userdata)
13 *(double *)resp = *(double *)args[0];
15 printf("%f: %f\n",*(double *)args[0],
16 *(double *)resp);
18 typedef double (*cls_ret_double)(double);
20 int main (void)
22 ffi_cif cif;
23 static ffi_closure cl;
24 ffi_closure *pcl = &cl;
25 ffi_type * cl_arg_types[2];
26 double res;
28 cl_arg_types[0] = &ffi_type_double;
29 cl_arg_types[1] = NULL;
31 /* Initialize the cif */
32 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
33 &ffi_type_double, cl_arg_types) == FFI_OK);
35 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_double_fn, NULL) == FFI_OK);
37 res = (*((cls_ret_double)pcl))(21474.789);
38 /* { dg-output "21474.789000: 21474.789000" } */
39 CHECK(res == 21474.789000);
40 exit(0);