2 Purpose: Check denorm double value.
5 Originator: From the original ffitest.c */
8 /* { dg-options "-mieee" { target alpha*-*-* } } */
16 unsigned char c
[sizeof (double)];
21 static double dblit(double d
)
29 ffi_type
*args
[MAX_ARGS
];
30 void *values
[MAX_ARGS
];
35 args
[0] = &ffi_type_double
;
38 /* Initialize the cif */
39 CHECK(ffi_prep_cif(&cif
, FFI_DEFAULT_ABI
, 1,
40 &ffi_type_double
, args
) == FFI_OK
);
44 /* Put a canary in the return array. This is a regression test for
46 memset(result
[1].c
, CANARY
, sizeof (double));
48 ffi_call(&cif
, FFI_FN(dblit
), &result
[0].d
, values
);
50 /* The standard delta check doesn't work for denorms. Since we didn't do
51 any arithmetic, we should get the original result back, and hence an
52 exact check should be OK here. */
54 CHECK(result
[0].d
== dblit(d
));
56 /* Check the canary. */
57 for (i
= 0; i
< sizeof (double); ++i
)
58 CHECK(result
[1].c
[i
] == CANARY
);