1 //===--------------- trunctfsf2_test.c - Test __trunctfsf2 ----------------===//
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 __trunctfsf2 for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
16 #if __LDBL_MANT_DIG__ == 113
20 float __trunctfsf2(long double a
);
22 int test__trunctfsf2(long double a
, uint32_t expected
)
24 float x
= __trunctfsf2(a
);
25 int ret
= compareResultF(x
, expected
);
28 printf("error in test__trunctfsf2(%.20Lf) = %f, "
29 "expected %f\n", a
, x
, fromRep32(expected
));
34 char assumption_1
[sizeof(long double) * CHAR_BIT
== 128] = {0};
40 #if __LDBL_MANT_DIG__ == 113
42 if (test__trunctfsf2(makeQNaN128(),
43 UINT32_C(0x7fc00000)))
46 if (test__trunctfsf2(makeNaN128(UINT64_C(0x810000000000)),
47 UINT32_C(0x7fc08000)))
50 if (test__trunctfsf2(makeInf128(),
51 UINT32_C(0x7f800000)))
54 if (test__trunctfsf2(0.0L, UINT32_C(0x0)))
57 if (test__trunctfsf2(0x1.23a2abb4a2ddee355f36789abcdep
+5L,
58 UINT32_C(0x4211d156)))
60 if (test__trunctfsf2(0x1.e3d3c45bd3abfd98b76a54cc321fp
-9L,
61 UINT32_C(0x3b71e9e2)))
63 if (test__trunctfsf2(0x1.234eebb5faa678f4488693abcdefp
+4534L,
64 UINT32_C(0x7f800000)))
66 if (test__trunctfsf2(0x1.edcba9bb8c76a5a43dd21f334634p
-435L,