X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flrintf.c;h=06fc366b6da6d6bad9ce0e4853a13a218b76e9d9;hb=5625f7d633fa22dd50b94b086abaa0dbcc0e6208;hp=87754aafcd29be23754d7c5f87649159aaf32bd6;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/lrintf.c b/src/math/lrintf.c index 87754aa..06fc366 100644 --- a/src/math/lrintf.c +++ b/src/math/lrintf.c @@ -4,14 +4,14 @@ static struct f_i t[] = { #include "sanity/lrintf.h" +#include "special/lrintf.h" }; int main(void) { #pragma STDC FENV_ACCESS ON - int yi; - float d; + long long yi; int e, i, err = 0; struct f_i *p; @@ -31,8 +31,8 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - if (yi != p->i) { - printf("%s:%d: %s lrintf(%a) want %lld got %d\n", + if (!(p->e&INVALID) && yi != p->i) { + printf("%s:%d: %s lrintf(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }