2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / libffi.call / float1.c
blob991d059fe405171348bb5823492b114853813030
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 typedef union
13 double d;
14 unsigned char c[sizeof (double)];
15 } value_type;
17 #define CANARY 0xba
19 static double dblit(float f)
21 return f/3.0;
24 int main (void)
26 ffi_cif cif;
27 ffi_type *args[MAX_ARGS];
28 void *values[MAX_ARGS];
29 float f;
30 value_type result[2];
31 unsigned int i;
33 args[0] = &ffi_type_float;
34 values[0] = &f;
36 /* Initialize the cif */
37 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
38 &ffi_type_double, args) == FFI_OK);
40 f = 3.14159;
42 /* Put a canary in the return array. This is a regression test for
43 a buffer overrun. */
44 memset(result[1].c, CANARY, sizeof (double));
46 ffi_call(&cif, FFI_FN(dblit), &result[0].d, values);
48 /* These are not always the same!! Check for a reasonable delta */
50 CHECK(result[0].d - dblit(f) < DBL_EPSILON);
52 /* Check the canary. */
53 for (i = 0; i < sizeof (double); ++i)
54 CHECK(result[1].c[i] == CANARY);
56 exit(0);