[Flang][OpenMP]Add parsing support for DISPATCH construct (#121982)
[llvm-project.git] / compiler-rt / test / builtins / Unit / floatsitf_test.c
blobb6571b9ba223d9b8d7b32b792fa0b5196df40134
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_floatsitf
4 #include "int_lib.h"
5 #include <stdio.h>
7 #if __LDBL_MANT_DIG__ == 113
9 #include "fp_test.h"
11 COMPILER_RT_ABI long double __floatsitf(si_int a);
13 int test__floatsitf(si_int a, uint64_t expectedHi, uint64_t expectedLo)
15 long double x = __floatsitf(a);
16 int ret = compareResultF128(x, expectedHi, expectedLo);
18 if (ret)
20 printf("error in test__floatsitf(%d) = %.20Lf, "
21 "expected %.20Lf\n", a, x, fromRep128(expectedHi, expectedLo));
23 return ret;
26 char assumption_1[sizeof(long double) * CHAR_BIT == 128] = {0};
28 #endif
30 int main()
32 #if __LDBL_MANT_DIG__ == 113
33 if (test__floatsitf(0x80000000, UINT64_C(0xc01e000000000000), UINT64_C(0x0)))
34 return 1;
35 if (test__floatsitf(0x7fffffff, UINT64_C(0x401dfffffffc0000), UINT64_C(0x0)))
36 return 1;
37 if (test__floatsitf(0, UINT64_C(0x0), UINT64_C(0x0)))
38 return 1;
39 if (test__floatsitf(0xffffffff, UINT64_C(0xbfff000000000000), UINT64_C(0x0)))
40 return 1;
41 if (test__floatsitf(0x12345678, UINT64_C(0x401b234567800000), UINT64_C(0x0)))
42 return 1;
43 if (test__floatsitf(-0x12345678, UINT64_C(0xc01b234567800000), UINT64_C(0x0)))
44 return 1;
46 #else
47 printf("skipped\n");
49 #endif
50 return 0;