X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flround.c;h=36d3907faf79523c94235b3c2cfe69e3244c9099;hb=7fd3b84625cfa955207526eda74d9261c5324549;hp=aa751a080265e4f35fee2d17e547c0e38c68638b;hpb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;p=libc-test diff --git a/src/math/lround.c b/src/math/lround.c index aa751a0..36d3907 100644 --- a/src/math/lround.c +++ b/src/math/lround.c @@ -4,6 +4,7 @@ static struct d_i t[] = { #include "sanity/lround.h" +#include "special/lround.h" }; @@ -11,7 +12,6 @@ int main(void) { #pragma STDC FENV_ACCESS ON long long yi; - float d; int e, i, err = 0; struct d_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 lround(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++;