X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Flrintl.c;h=5091b1b1d82972d0e86c7b9c7c62e17e6bc782e0;hb=b3580f11bf7b91afd597e6224c2f265d6d0b087f;hp=f689cf2a422b70d546f4bd909824a83f39042aac;hpb=e084227a3608bc38230b88ea03e7b0f0804dd3ad;p=libc-test diff --git a/src/math/lrintl.c b/src/math/lrintl.c index f689cf2..5091b1b 100644 --- a/src/math/lrintl.c +++ b/src/math/lrintl.c @@ -5,9 +5,11 @@ static struct l_i t[] = { #if LDBL_MANT_DIG == 53 #include "sanity/lrint.h" +#include "special/lrint.h" #elif LDBL_MANT_DIG == 64 #include "sanity/lrintl.h" +#include "special/lrintl.h" #endif }; @@ -16,7 +18,6 @@ int main(void) { #pragma STDC FENV_ACCESS ON long long yi; - float d; int e, i, err = 0; struct l_i *p; @@ -36,7 +37,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 lrintl(%La) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++;