Ruby
2.4.2p198(2017-09-14revision59899)
ext
fiddle
libffi-3.2.1
testsuite
libffi.call
return_sc.c
Go to the documentation of this file.
1
/* Area: ffi_call
2
Purpose: Check return value signed char.
3
Limitations: none.
4
PR: none.
5
Originator: From the original ffitest.c */
6
7
/* { dg-do run } */
8
#include "
ffitest.h
"
9
10
static
signed
char
return_sc
(
signed
char
sc)
11
{
12
return
sc;
13
}
14
int
main
(
void
)
15
{
16
ffi_cif cif;
17
ffi_type *args[
MAX_ARGS
];
18
void
*values[
MAX_ARGS
];
19
ffi_arg
rint;
20
signed
char
sc;
21
22
args[0] = &
ffi_type_schar
;
23
values[0] = ≻
24
25
/* Initialize the cif */
26
CHECK
(
ffi_prep_cif
(&cif,
FFI_DEFAULT_ABI
, 1,
27
&
ffi_type_schar
, args) == FFI_OK);
28
29
for
(sc = (
signed
char
) -127;
30
sc < (
signed
char) 127; sc++)
31
{
32
ffi_call
(&cif, FFI_FN(
return_sc
), &rint, values);
33
CHECK
((
signed
char
)rint == sc);
34
}
35
exit(0);
36
}
ffi_type_schar
#define ffi_type_schar
Definition:
fiddle.h:56
ffi_arg
unsigned long ffi_arg
Definition:
ffitarget.h:30
return_sc
static signed char return_sc(signed char sc)
Definition:
return_sc.c:10
ffitest.h
ffi_call
void ffi_call(ffi_cif *cif, void(*fn)(void), void *rvalue, void **avalue)
Definition:
ffi.c:813
MAX_ARGS
#define MAX_ARGS
Definition:
function.c:15
main
int main(void)
Definition:
return_sc.c:14
FFI_DEFAULT_ABI
Definition:
ffitarget.h:38
CHECK
#define CHECK(sub)
Definition:
compile.c:408
ffi_prep_cif
ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes)
Definition:
prep_cif.c:226
Generated by
1.8.13