5 static struct dd_d t
[] = {
7 #include "sanity/hypot.h"
8 #include "special/hypot.h"
14 #pragma STDC FENV_ACCESS ON
20 for (i
= 0; i
< sizeof t
/sizeof *t
; i
++) {
26 feclearexcept(FE_ALL_EXCEPT
);
27 y
= hypot(p
->x
, p
->x2
);
28 e
= fetestexcept(INEXACT
|INVALID
|DIVBYZERO
|UNDERFLOW
|OVERFLOW
);
30 if (!checkexcept(e
, p
->e
, p
->r
)) {
31 printf("%s:%d: bad fp exception: %s hypot(%a,%a)=%a, want %s",
32 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->x2
, p
->y
, estr(p
->e
));
33 printf(" got %s\n", estr(e
));
36 d
= ulperr(y
, p
->y
, p
->dy
);
37 if (!checkulp(d
, p
->r
)) {
38 printf("%s:%d: %s hypot(%a,%a) want %a got %a ulperr %.3f = %a + %a\n",
39 p
->file
, p
->line
, rstr(p
->r
), p
->x
, p
->x2
, p
->y
, y
, d
, d
-p
->dy
, p
->dy
);