From: Szabolcs Nagy Date: Fri, 21 Feb 2014 08:40:44 +0000 (+0100) Subject: remquol: use remquo tests when long double == double X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=32fca61b208425e16262e4d007dabad44bcd872b;p=libc-test remquol: use remquo tests when long double == double --- diff --git a/src/math/remquol.c b/src/math/remquol.c index cf64126..3f34f68 100644 --- a/src/math/remquol.c +++ b/src/math/remquol.c @@ -3,8 +3,15 @@ #include "mtest.h" static struct ll_li t[] = { +#if LDBL_MANT_DIG == 53 +#include "sanity/remquo.h" +#include "special/remquo.h" + +#elif LDBL_MANT_DIG == 64 #include "sanity/remquol.h" #include "special/remquol.h" + +#endif }; int main(void)