1 //===-- lesf2vfp_test.c - Test __lesf2vfp ---------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file tests __lesf2vfp for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
20 extern int __lesf2vfp(float a
, float b
);
23 int test__lesf2vfp(float a
, float b
)
25 int actual
= __lesf2vfp(a
, b
);
26 int expected
= (a
<= b
) ? 1 : 0;
27 if (actual
!= expected
)
28 printf("error in __lesf2vfp(%f, %f) = %d, expected %d\n",
29 a
, b
, actual
, expected
);
30 return actual
!= expected
;
37 if (test__lesf2vfp(0.0, 0.0))
39 if (test__lesf2vfp(1.0, 1.0))
41 if (test__lesf2vfp(-1.0, -2.0))
43 if (test__lesf2vfp(-2.0, -1.0))
45 if (test__lesf2vfp(HUGE_VALF
, 1.0))
47 if (test__lesf2vfp(1.0, HUGE_VALF
))