2018-01-10 Richard Biener <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / libffi.call / float1.c
blobc48493c6b22755b8f4a67543bc845e5839f24c25
1 /* Area: ffi_call
2 Purpose: Check return value double.
3 Limitations: none.
4 PR: none.
5 Originator: From the original ffitest.c */
7 /* { dg-do run } */
8 #include "ffitest.h"
9 #include "float.h"
11 #include <math.h>
13 typedef union
15 double d;
16 unsigned char c[sizeof (double)];
17 } value_type;
19 #define CANARY 0xba
21 static double dblit(float f)
23 return f/3.0;
26 int main (void)
28 ffi_cif cif;
29 ffi_type *args[MAX_ARGS];
30 void *values[MAX_ARGS];
31 float f;
32 value_type result[2];
33 unsigned int i;
35 args[0] = &ffi_type_float;
36 values[0] = &f;
38 /* Initialize the cif */
39 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
40 &ffi_type_double, args) == FFI_OK);
42 f = 3.14159;
44 /* Put a canary in the return array. This is a regression test for
45 a buffer overrun. */
46 memset(result[1].c, CANARY, sizeof (double));
48 ffi_call(&cif, FFI_FN(dblit), &result[0].d, values);
50 /* These are not always the same!! Check for a reasonable delta */
52 CHECK(fabs(result[0].d - dblit(f)) < DBL_EPSILON);
54 /* Check the canary. */
55 for (i = 0; i < sizeof (double); ++i)
56 CHECK(result[1].c[i] == CANARY);
58 exit(0);