X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fllrintf.c;h=e8f5fa4f39eb3187426d02bb1440c1f5861c4aac;hb=5625f7d633fa22dd50b94b086abaa0dbcc0e6208;hp=5a4e8c7a764b9f36ecd4421d87166c07955fddb6;hpb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;p=libc-test diff --git a/src/math/llrintf.c b/src/math/llrintf.c index 5a4e8c7..e8f5fa4 100644 --- a/src/math/llrintf.c +++ b/src/math/llrintf.c @@ -4,6 +4,7 @@ static struct f_i t[] = { #include "sanity/llrintf.h" +#include "special/llrintf.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 llrintf(%a) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++;