2 Purpose: Check fastcall fct call on X86_WIN32 systems.
5 Originator: From the original ffitest.c */
7 /* { dg-do run { target i?86-*-cygwin* i?86-*-mingw* } } */
11 static size_t __FASTCALL__
my_fastcall_f(char *s
, float a
)
13 return (size_t) ((int) strlen(s
) + (int) a
);
19 ffi_type
*args
[MAX_ARGS
];
20 void *values
[MAX_ARGS
];
24 args
[0] = &ffi_type_pointer
;
25 args
[1] = &ffi_type_float
;
26 values
[0] = (void*) &s
;
27 values
[1] = (void*) &v2
;
29 /* Initialize the cif */
30 CHECK(ffi_prep_cif(&cif
, FFI_FASTCALL
, 2,
31 &ffi_type_sint
, args
) == FFI_OK
);
35 ffi_call(&cif
, FFI_FN(my_fastcall_f
), &rint
, values
);
40 ffi_call(&cif
, FFI_FN(my_fastcall_f
), &rint
, values
);
43 s
= "1234567890123456789012345";
45 ffi_call(&cif
, FFI_FN(my_fastcall_f
), &rint
, values
);
48 printf("fastcall fct1 tests passed\n");