2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / libffi / testsuite / libffi.call / float3.c
blob76bd5f287cbf5eea15ab91030b1f196b77ec8a7a
1 /* Area: ffi_call
2 Purpose: Check float arguments with different orders.
3 Limitations: none.
4 PR: none.
5 Originator: From the original ffitest.c */
7 /* { dg-do run } */
9 #include "ffitest.h"
10 #include "float.h"
12 static double floating_1(float a, double b, long double c)
14 return (double) a + b + (double) c;
17 static double floating_2(long double a, double b, float c)
19 return (double) a + b + (double) c;
22 int main (void)
24 ffi_cif cif;
25 ffi_type *args[MAX_ARGS];
26 void *values[MAX_ARGS];
27 double rd;
29 float f;
30 double d;
31 long double ld;
33 args[0] = &ffi_type_float;
34 values[0] = &f;
35 args[1] = &ffi_type_double;
36 values[1] = &d;
37 args[2] = &ffi_type_longdouble;
38 values[2] = &ld;
40 /* Initialize the cif */
41 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 3,
42 &ffi_type_double, args) == FFI_OK);
44 f = 3.14159;
45 d = (double)1.0/(double)3.0;
46 ld = 2.71828182846L;
48 floating_1 (f, d, ld);
50 ffi_call(&cif, FFI_FN(floating_1), &rd, values);
52 CHECK(rd - floating_1(f, d, ld) < DBL_EPSILON);
54 args[0] = &ffi_type_longdouble;
55 values[0] = &ld;
56 args[1] = &ffi_type_double;
57 values[1] = &d;
58 args[2] = &ffi_type_float;
59 values[2] = &f;
61 /* Initialize the cif */
62 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 3,
63 &ffi_type_double, args) == FFI_OK);
65 floating_2 (ld, d, f);
67 ffi_call(&cif, FFI_FN(floating_2), &rd, values);
69 CHECK(rd - floating_2(ld, d, f) < DBL_EPSILON);
71 exit (0);