1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_fixunssfsi
7 // Returns: convert a to a unsigned int, rounding toward zero.
8 // Negative values all become zero.
10 // Assumption: float is a IEEE 32 bit floating point type
11 // su_int is a 32 bit integral type
12 // value in float is representable in su_int or is negative
13 // (no range checking performed)
15 // seee eeee emmm mmmm mmmm mmmm mmmm mmmm
17 COMPILER_RT_ABI su_int
__fixunssfsi(float a
);
19 int test__fixunssfsi(float a
, su_int expected
)
21 su_int x
= __fixunssfsi(a
);
23 printf("error in __fixunssfsi(%A) = %X, expected %X\n", a
, x
, expected
);
27 char assumption_2
[sizeof(su_int
)*CHAR_BIT
== 32] = {0};
28 char assumption_3
[sizeof(float)*CHAR_BIT
== 32] = {0};
32 if (test__fixunssfsi(0.0F
, 0))
35 if (test__fixunssfsi(0.5F
, 0))
37 if (test__fixunssfsi(0.99F
, 0))
39 if (test__fixunssfsi(1.0F
, 1))
41 if (test__fixunssfsi(1.5F
, 1))
43 if (test__fixunssfsi(1.99F
, 1))
45 if (test__fixunssfsi(2.0F
, 2))
47 if (test__fixunssfsi(2.01F
, 2))
49 if (test__fixunssfsi(-0.5F
, 0))
51 if (test__fixunssfsi(-0.99F
, 0))
54 if (test__fixunssfsi(-1.0F
, 0)) // libgcc ignores "returns 0 for negative input" spec
56 if (test__fixunssfsi(-1.5F
, 0))
58 if (test__fixunssfsi(-1.99F
, 0))
60 if (test__fixunssfsi(-2.0F
, 0))
62 if (test__fixunssfsi(-2.01F
, 0))
66 if (test__fixunssfsi(0x1.000000p
+31F
, 0x80000000))
68 if (test__fixunssfsi(0x1.000000p
+32F
, 0xFFFFFFFF))
70 if (test__fixunssfsi(0x1.FFFFFEp
+31F
, 0xFFFFFF00))
72 if (test__fixunssfsi(0x1.FFFFFEp
+30F
, 0x7FFFFF80))
74 if (test__fixunssfsi(0x1.FFFFFCp
+30F
, 0x7FFFFF00))
78 if (test__fixunssfsi(-0x1.FFFFFEp
+30F
, 0))
80 if (test__fixunssfsi(-0x1.FFFFFCp
+30F
, 0))