From: Bobby Bingham Date: Thu, 30 Jun 2016 18:33:35 +0000 (+0000) Subject: fix math/isless test X-Git-Url: http://nsz.repo.hu/git/?p=libc-test;a=commitdiff_plain;h=ec474bb2d6954a67022ef5ead112a8aec3b00df0 fix math/isless test --- diff --git a/src/math/isless.c b/src/math/isless.c index 4ce1bc6..595c8f5 100644 --- a/src/math/isless.c +++ b/src/math/isless.c @@ -88,13 +88,13 @@ int main() #if FLT_EVAL_METHOD >= 1 T(hugef*hugef, hugef*hugef*2, LESS); - T(tiny*tiny*0.5f, tiny*tiny, LESS); - T(-tiny*tiny, 0.0f, LESS); + T(tinyf*tinyf*0.5f, tinyf*tinyf, LESS); + T(-tinyf*tinyf, 0.0f, LESS); T(1.0f, 1.0f+epsf*0.25f, LESS); #else T(hugef*hugef, hugef*hugef*2, EQUAL); - T(tiny*tiny*0.5f, tiny*tiny, EQUAL); - T(-tiny*tiny, 0.0f, EQUAL); + T(tinyf*tinyf*0.5f, tinyf*tinyf, EQUAL); + T(-tinyf*tinyf, 0.0f, EQUAL); T(1.0f, 1.0f+epsf*0.25f, EQUAL); #endif