X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fllrintl.c;h=0fea06e99c02eec09a5bd11a905e10c4dcffdf59;hb=7fd3b84625cfa955207526eda74d9261c5324549;hp=9d99e87a934bd205faf58a1017e40f07ec0b99c0;hpb=b5bbc6ebaeaf4381ea2436a3b410dcf4980c8efd;p=libc-test diff --git a/src/math/llrintl.c b/src/math/llrintl.c index 9d99e87..0fea06e 100644 --- a/src/math/llrintl.c +++ b/src/math/llrintl.c @@ -5,9 +5,11 @@ static struct l_i t[] = { #if LDBL_MANT_DIG == 53 #include "sanity/llrint.h" +#include "special/llrint.h" #elif LDBL_MANT_DIG == 64 #include "sanity/llrintl.h" +#include "special/llrintl.h" #endif }; @@ -15,8 +17,7 @@ static struct l_i t[] = { int main(void) { #pragma STDC FENV_ACCESS ON - int yi; - float d; + long long yi; int e, i, err = 0; struct l_i *p; @@ -36,8 +37,8 @@ int main(void) printf(" got %s\n", estr(e)); err++; } - if (yi != p->i) { - printf("%s:%d: %s llrintl(%La) want %lld got %d\n", + if (!(p->e&INVALID) && yi != p->i) { + printf("%s:%d: %s llrintl(%La) want %lld got %lld\n", p->file, p->line, rstr(p->r), p->x, p->i, yi); err++; }