1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_trunctfsf2
3 //===--------------- trunctfsf2_test.c - Test __trunctfsf2 ----------------===//
5 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6 // See https://llvm.org/LICENSE.txt for license information.
7 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 //===----------------------------------------------------------------------===//
11 // This file tests __trunctfsf2 for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
18 #if __LDBL_MANT_DIG__ == 113
22 COMPILER_RT_ABI
float __trunctfsf2(long double a
);
24 int test__trunctfsf2(long double a
, uint32_t expected
)
26 float x
= __trunctfsf2(a
);
27 int ret
= compareResultF(x
, expected
);
30 printf("error in test__trunctfsf2(%.20Lf) = %f, "
31 "expected %f\n", a
, x
, fromRep32(expected
));
36 char assumption_1
[sizeof(long double) * CHAR_BIT
== 128] = {0};
42 #if __LDBL_MANT_DIG__ == 113
44 if (test__trunctfsf2(makeQNaN128(),
45 UINT32_C(0x7fc00000)))
48 if (test__trunctfsf2(makeNaN128(UINT64_C(0x810000000000)),
49 UINT32_C(0x7fc08000)))
52 if (test__trunctfsf2(makeInf128(),
53 UINT32_C(0x7f800000)))
56 if (test__trunctfsf2(0.0L, UINT32_C(0x0)))
59 if (test__trunctfsf2(0x1.23a2abb4a2ddee355f36789abcdep
+5L,
60 UINT32_C(0x4211d156)))
62 if (test__trunctfsf2(0x1.e3d3c45bd3abfd98b76a54cc321fp
-9L,
63 UINT32_C(0x3b71e9e2)))
65 if (test__trunctfsf2(0x1.234eebb5faa678f4488693abcdefp
+4534L,
66 UINT32_C(0x7f800000)))
68 if (test__trunctfsf2(0x1.edcba9bb8c76a5a43dd21f334634p
-435L,