1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_floatunsitf
3 //===--------------- floatunsitf_test.c - Test __floatunsitf --------------===//
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 __floatunsitf for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
18 #if __LDBL_MANT_DIG__ == 113
22 COMPILER_RT_ABI
long double __floatunsitf(unsigned int a
);
24 int test__floatunsitf(unsigned int a
, uint64_t expectedHi
, uint64_t expectedLo
)
26 long double x
= __floatunsitf(a
);
27 int ret
= compareResultLD(x
, expectedHi
, expectedLo
);
30 printf("error in test__floatunsitf(%u) = %.20Lf, "
31 "expected %.20Lf\n", a
, x
, fromRep128(expectedHi
, expectedLo
));
36 char assumption_1
[sizeof(long double) * CHAR_BIT
== 128] = {0};
42 #if __LDBL_MANT_DIG__ == 113
43 if (test__floatunsitf(0x7fffffff, UINT64_C(0x401dfffffffc0000), UINT64_C(0x0)))
45 if (test__floatunsitf(0, UINT64_C(0x0), UINT64_C(0x0)))
47 if (test__floatunsitf(0xffffffff, UINT64_C(0x401efffffffe0000), UINT64_C(0x0)))
49 if (test__floatunsitf(0x12345678, UINT64_C(0x401b234567800000), UINT64_C(0x0)))