2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / libffi.call / return_ll.c
blobea4a1e44780c09fe9d7df9a6f84c255700d6a2a0
1 /* Area: ffi_call
2 Purpose: Check return value long long.
3 Limitations: none.
4 PR: none.
5 Originator: From the original ffitest.c */
7 /* { dg-do run } */
8 #include "ffitest.h"
9 static long long return_ll(long long ll)
11 return ll;
14 int main (void)
16 ffi_cif cif;
17 ffi_type *args[MAX_ARGS];
18 void *values[MAX_ARGS];
19 long long rlonglong;
20 long long ll;
22 args[0] = &ffi_type_sint64;
23 values[0] = &ll;
25 /* Initialize the cif */
26 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
27 &ffi_type_sint64, args) == FFI_OK);
29 for (ll = 0LL; ll < 100LL; ll++)
31 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
32 CHECK(rlonglong == ll);
35 for (ll = 55555555555000LL; ll < 55555555555100LL; ll++)
37 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
38 CHECK(rlonglong == ll);
40 exit(0);