We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40e734e commit 8e8d0c1Copy full SHA for 8e8d0c1
compiler-rt/test/builtins/Unit/truncxfhf2_test.c
@@ -48,17 +48,17 @@ int main() {
48
49
// Positive infinity
50
if (test_truncxfhf2(UINT16_C(0x7fff), UINT64_C(0x8000000000000000),
51
- UINT16_C(0x7c00U)))
+ UINT16_C(0x7c00)))
52
return 1;
53
54
// Negative infinity
55
if (test_truncxfhf2(UINT16_C(0xffff), UINT64_C(0x8000000000000000),
56
- UINT16_C(0xfc00U)))
+ UINT16_C(0xfc00)))
57
58
59
// NaN
60
if (test_truncxfhf2(UINT16_C(0x7fff), UINT64_C(0xc000000000000000),
61
- UINT16_C(0x7e00U)))
+ UINT16_C(0x7e00)))
62
63
64
return 0;
0 commit comments