2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / libffi.call / cls_longdouble_va.c
blob3d725bd731a8b231b804d29e391a5cad84862160
1 /* Area: ffi_call, closure_call
2 Purpose: Test long doubles passed in variable argument lists.
3 Limitations: none.
4 PR: none.
5 Originator: Blake Chaffin 6/6/2007 */
7 /* { dg-do run { xfail mips*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
8 /* { dg-output "" { xfail x86_64-*-mingw* } } */
9 #include "ffitest.h"
11 static void
12 cls_longdouble_va_fn(ffi_cif* cif __UNUSED__, void* resp,
13 void** args, void* userdata __UNUSED__)
15 char* format = *(char**)args[0];
16 long double ldValue = *(long double*)args[1];
18 *(ffi_arg*)resp = printf(format, ldValue);
21 int main (void)
23 ffi_cif cif;
24 void *code;
25 ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
26 void* args[3];
27 ffi_type* arg_types[3];
29 char* format = "%L.1f\n";
30 long double ldArg = 7;
31 ffi_arg res = 0;
33 arg_types[0] = &ffi_type_pointer;
34 arg_types[1] = &ffi_type_longdouble;
35 arg_types[2] = NULL;
37 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &ffi_type_sint,
38 arg_types) == FFI_OK);
40 args[0] = &format;
41 args[1] = &ldArg;
42 args[2] = NULL;
44 ffi_call(&cif, FFI_FN(printf), &res, args);
45 // { dg-output "7.0" { xfail i*86-*-linux-* x86_64-*-linux-* } }
46 printf("res: %d\n", (int) res);
47 // { dg-output "\nres: 4" { xfail i*86-*-linux-* x86_64-*-linux-* } }
49 CHECK(ffi_prep_closure_loc(pcl, &cif, cls_longdouble_va_fn, NULL, code) == FFI_OK);
51 res = ((int(*)(char*, long double))(code))(format, ldArg);
52 // { dg-output "\n7.0" }
53 printf("res: %d\n", (int) res);
54 // { dg-output "\nres: 4" }
56 exit(0);