X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fnexttoward.c;h=66c63a6e9525a47475c3e2ab13978e6148121680;hb=7fd3b84625cfa955207526eda74d9261c5324549;hp=f03a094cde583dfc41f631af7709a8db7572eaca;hpb=f3f0ff4782fc90bd0f3e48fd541ee431f76aaed1;p=libc-test diff --git a/src/math/nexttoward.c b/src/math/nexttoward.c index f03a094..66c63a6 100644 --- a/src/math/nexttoward.c +++ b/src/math/nexttoward.c @@ -18,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; @@ -39,9 +39,9 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - d = ulperrl(y, p->y, p->dy); + d = ulperr(y, p->y, p->dy); if (!checkcr(y, p->y, p->r)) { - printf("%s:%d: %s nexttoward(%La,%La) want %La got %La ulperr %.3f = %a + %a\n", + 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++; }