X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmath%2Fnexttoward.c;h=66c63a6e9525a47475c3e2ab13978e6148121680;hb=e940a4375097025e2a2e8110496d5f471adda293;hp=9a87d00863fe1e434724694157b3051e130ff68c;hpb=ddfb9f92381086ef0b29f6fdddee3f7e51fb82e1;p=libc-test diff --git a/src/math/nexttoward.c b/src/math/nexttoward.c index 9a87d00..66c63a6 100644 --- a/src/math/nexttoward.c +++ b/src/math/nexttoward.c @@ -2,12 +2,15 @@ #include #include "util.h" +// TODO: fix ldbl static struct ll_l t[] = { #if LDBL_MANT_DIG == 53 #include "sanity/nexttoward.h" +#include "special/nexttoward.h" #elif LDBL_MANT_DIG == 64 #include "sanity/nexttoward.h" +#include "special/nexttoward.h" #endif }; @@ -15,7 +18,7 @@ static struct ll_l t[] = { int main(void) { #pragma STDC FENV_ACCESS ON - long double y; + double y; float d; int e, i, err = 0; struct ll_l *p; @@ -36,9 +39,9 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - d = ulperrl(y, p->y, p->dy); - if (!checkulp(d, p->r)) { - printf("%s:%d: %s nexttoward(%La,%La) want %La got %La ulperr %.3f = %a + %a\n", + d = ulperr(y, p->y, p->dy); + if (!checkcr(y, p->y, p->r)) { + printf("%s:%d: %s nexttoward(%La,%La) want %La got %a ulperr %.3f = %a + %a\n", p->file, p->line, rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy); err++; }