5 static struct f_i t
[] = {
6 #include "sanity/lroundf.h"
7 #include "special/lroundf.h"
13 #pragma STDC FENV_ACCESS ON
18 for (i
= 0; i
< sizeof t
/sizeof *t
; i
++) {
24 feclearexcept(FE_ALL_EXCEPT
);
26 e
= fetestexcept(INEXACT
|INVALID
|DIVBYZERO
|UNDERFLOW
|OVERFLOW
);
28 if (!checkexcept(e
, p
->e
, p
->r
)) {
29 printf("%s:%d: bad fp exception: %s lroundf(%a)=%lld, want %s",
30 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->i
, estr(p
->e
));
31 printf(" got %s\n", estr(e
));
34 if (!(p
->e
&INVALID
) && yi
!= p
->i
) {
35 printf("%s:%d: %s lroundf(%a) want %lld got %lld\n",
36 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->i
, yi
);