1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_floatsitf
3 //===--------------- floatsitf_test.c - Test __floatsitf ------------------===//
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 __floatsitf for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
18 #if __LDBL_MANT_DIG__ == 113
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
);
31 printf("error in test__floatsitf(%d) = %.20Lf, "
32 "expected %.20Lf\n", a
, x
, fromRep128(expectedHi
, expectedLo
));
37 char assumption_1
[sizeof(long double) * CHAR_BIT
== 128] = {0};
43 #if __LDBL_MANT_DIG__ == 113
44 if (test__floatsitf(0x80000000, UINT64_C(0xc01e000000000000), UINT64_C(0x0)))
46 if (test__floatsitf(0x7fffffff, UINT64_C(0x401dfffffffc0000), UINT64_C(0x0)))
48 if (test__floatsitf(0, UINT64_C(0x0), UINT64_C(0x0)))
50 if (test__floatsitf(0xffffffff, UINT64_C(0xbfff000000000000), UINT64_C(0x0)))
52 if (test__floatsitf(0x12345678, UINT64_C(0x401b234567800000), UINT64_C(0x0)))
54 if (test__floatsitf(-0x12345678, UINT64_C(0xc01b234567800000), UINT64_C(0x0)))