X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fllroundf.c;h=d4256f5658bbbf4246010fd2e4642d970e591a27;hb=b3580f11bf7b91afd597e6224c2f265d6d0b087f;hp=780a97487f43067a2046b55e0d2d4788f5c19f5c;hpb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;p=libc-test diff --git a/src/math/llroundf.c b/src/math/llroundf.c index 780a974..d4256f5 100644 --- a/src/math/llroundf.c +++ b/src/math/llroundf.c @@ -4,6 +4,7 @@ static struct f_i t[] = { #include "sanity/llroundf.h" +#include "special/llroundf.h" }; @@ -11,7 +12,6 @@ int main(void) { #pragma STDC FENV_ACCESS ON long long yi; - float d; int e, i, err = 0; struct f_i *p; @@ -31,7 +31,7 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - if (yi != p->i) { + if (!(p->e&INVALID) && yi != p->i) { printf("%s:%d: %s llroundf(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++;