Ruby 2.7.6p219 (2022-04-12 revision c9c2245c0a25176072e02db9254f0e0c84c805cd)
float.c
Go to the documentation of this file.
1/* Area: ffi_call
2 Purpose: Check return value float.
3 Limitations: none.
4 PR: none.
5 Originator: From the original ffitest.c */
6
7/* { dg-do run } */
8
9#include "ffitest.h"
10
11static int floating(int a, float b, double c, long double d)
12{
13 int i;
14
15 i = (int) ((float)a/b + ((float)c/(float)d));
16
17 return i;
18}
19
20int main (void)
21{
22 ffi_cif cif;
23 ffi_type *args[MAX_ARGS];
24 void *values[MAX_ARGS];
26
27 float f;
28 signed int si1;
29 double d;
30 long double ld;
31
32 args[0] = &ffi_type_sint;
33 values[0] = &si1;
34 args[1] = &ffi_type_float;
35 values[1] = &f;
36 args[2] = &ffi_type_double;
37 values[2] = &d;
38 args[3] = &ffi_type_longdouble;
39 values[3] = &ld;
40
41 /* Initialize the cif */
43 &ffi_type_sint, args) == FFI_OK);
44
45 si1 = 6;
46 f = 3.14159;
47 d = (double)1.0/(double)3.0;
48 ld = 2.71828182846L;
49
50 floating (si1, f, d, ld);
51
52 ffi_call(&cif, FFI_FN(floating), &rint, values);
53
54 printf ("%d vs %d\n", (int)rint, floating (si1, f, d, ld));
55
56 CHECK((int)rint == floating(si1, f, d, ld));
57
58 exit (0);
59}
void ffi_call(ffi_cif *cif, void(*fn)(void), void *rvalue, void **avalue)
Definition: ffi.c:813
unsigned long ffi_arg
Definition: ffitarget.h:30
@ FFI_DEFAULT_ABI
Definition: ffitarget.h:38
#define CHECK(sub)
Definition: compile.c:448
int main(void)
Definition: float.c:20
#define MAX_ARGS
Definition: function.c:15
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
double rint(double)
int int int printf(const char *__restrict__,...) __attribute__((__format__(__printf__
uint32_t i
void exit(int __status) __attribute__((__noreturn__))
__inline__ int
#define f