X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmath%2Fllrint.c;h=ac8fea8b1aa3c590c88209ab9abc6e6d67e724a3;hb=b775d19f7ff58da3fe009d48742068cc92a274f2;hp=835501c4bd810c2895aa3f0762c36f6ccc5a03a4;hpb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;p=libc-test diff --git a/src/math/llrint.c b/src/math/llrint.c index 835501c..ac8fea8 100644 --- a/src/math/llrint.c +++ b/src/math/llrint.c @@ -4,6 +4,7 @@ static struct d_i t[] = { #include "sanity/llrint.h" +#include "special/llrint.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 llrint(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++;