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.
2 parents 5b68551 + 3d4a74d commit 3b370bbCopy full SHA for 3b370bb
sulong/tests/com.oracle.truffle.llvm.tests.llirtestgen.native/prelude.c
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2019, 2021, Oracle and/or its affiliates.
+ * Copyright (c) 2019, 2023, Oracle and/or its affiliates.
3
*
4
* All rights reserved.
5
@@ -76,7 +76,8 @@ int main(void) {
76
print_input(input);
77
run(input, input + 32, output);
78
79
- fill(input, output, 0xffffffffffffffffl, 0);
+ // not 0xff...f to avoid NaN, otherwise the float test results are unspecified
80
+ fill(input, output, 0xfefffffffeffffffl, 0);
81
82
83
@@ -88,7 +89,8 @@ int main(void) {
88
89
90
91
- fill(input, output, 0xffffffffffffffffl, -0x0101010101010101l);
92
93
+ fill(input, output, 0xfefffffffeffffffl, -0x0101010101010101l);
94
95
96
0 commit comments