[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / builtins / Unit / floatsitf_test.c
blob10f1d4a0466895766171224af09c108d3c67fe98
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_floatsitf
3 //===--------------- floatsitf_test.c - Test __floatsitf ------------------===//
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 __floatsitf 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 long COMPILER_RT_ABI double __floatsitf(int a);
24 int test__floatsitf(int a, uint64_t expectedHi, uint64_t expectedLo)
26 long double x = __floatsitf(a);
27 int ret = compareResultLD(x, expectedHi, expectedLo);
29 if (ret)
31 printf("error in test__floatsitf(%d) = %.20Lf, "
32 "expected %.20Lf\n", a, x, fromRep128(expectedHi, expectedLo));
34 return ret;
37 char assumption_1[sizeof(long double) * CHAR_BIT == 128] = {0};
39 #endif
41 int main()
43 #if __LDBL_MANT_DIG__ == 113
44 if (test__floatsitf(0x80000000, UINT64_C(0xc01e000000000000), UINT64_C(0x0)))
45 return 1;
46 if (test__floatsitf(0x7fffffff, UINT64_C(0x401dfffffffc0000), UINT64_C(0x0)))
47 return 1;
48 if (test__floatsitf(0, UINT64_C(0x0), UINT64_C(0x0)))
49 return 1;
50 if (test__floatsitf(0xffffffff, UINT64_C(0xbfff000000000000), UINT64_C(0x0)))
51 return 1;
52 if (test__floatsitf(0x12345678, UINT64_C(0x401b234567800000), UINT64_C(0x0)))
53 return 1;
54 if (test__floatsitf(-0x12345678, UINT64_C(0xc01b234567800000), UINT64_C(0x0)))
55 return 1;
57 #else
58 printf("skipped\n");
60 #endif
61 return 0;