2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libffi / testsuite / libffi.call / return_uc.c
blobc943d4801be048fbb33bc69b77d71c944898aea6
1 /* Area: ffi_call
2 Purpose: Check return value unsigned char.
3 Limitations: none.
4 PR: none.
5 Originator: From the original ffitest.c */
7 /* { dg-do run } */
8 #include "ffitest.h"
10 static unsigned char return_uc(unsigned char uc)
12 return uc;
15 int main (void)
17 ffi_cif cif;
18 ffi_type *args[MAX_ARGS];
19 void *values[MAX_ARGS];
20 ffi_arg rint;
22 unsigned char uc;
23 unsigned long ul;
25 args[0] = &ffi_type_uchar;
26 values[0] = &uc;
28 /* Initialize the cif */
29 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
30 &ffi_type_uchar, args) == FFI_OK);
32 for (uc = (unsigned char) '\x00';
33 uc < (unsigned char) '\xff'; uc++)
35 ul++;
36 ffi_call(&cif, FFI_FN(return_uc), &rint, values);
37 CHECK(rint == (signed int) uc);
39 exit(0);