[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / builtins / Unit / trunctfsf2_test.c
blob9d0d8b1151a1567cf49763306058b0fd751b3d00
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_trunctfsf2
3 //===--------------- trunctfsf2_test.c - Test __trunctfsf2 ----------------===//
4 //
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
8 //
9 //===----------------------------------------------------------------------===//
11 // This file tests __trunctfsf2 for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
15 #include "int_lib.h"
16 #include <stdio.h>
18 #if __LDBL_MANT_DIG__ == 113
20 #include "fp_test.h"
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);
29 if (ret){
30 printf("error in test__trunctfsf2(%.20Lf) = %f, "
31 "expected %f\n", a, x, fromRep32(expected));
33 return ret;
36 char assumption_1[sizeof(long double) * CHAR_BIT == 128] = {0};
38 #endif
40 int main()
42 #if __LDBL_MANT_DIG__ == 113
43 // qNaN
44 if (test__trunctfsf2(makeQNaN128(),
45 UINT32_C(0x7fc00000)))
46 return 1;
47 // NaN
48 if (test__trunctfsf2(makeNaN128(UINT64_C(0x810000000000)),
49 UINT32_C(0x7fc08000)))
50 return 1;
51 // inf
52 if (test__trunctfsf2(makeInf128(),
53 UINT32_C(0x7f800000)))
54 return 1;
55 // zero
56 if (test__trunctfsf2(0.0L, UINT32_C(0x0)))
57 return 1;
59 if (test__trunctfsf2(0x1.23a2abb4a2ddee355f36789abcdep+5L,
60 UINT32_C(0x4211d156)))
61 return 1;
62 if (test__trunctfsf2(0x1.e3d3c45bd3abfd98b76a54cc321fp-9L,
63 UINT32_C(0x3b71e9e2)))
64 return 1;
65 if (test__trunctfsf2(0x1.234eebb5faa678f4488693abcdefp+4534L,
66 UINT32_C(0x7f800000)))
67 return 1;
68 if (test__trunctfsf2(0x1.edcba9bb8c76a5a43dd21f334634p-435L,
69 UINT32_C(0x0)))
70 return 1;
72 #else
73 printf("skipped\n");
75 #endif
76 return 0;