Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
The issue in question is not a precision issue, but a printing one. For some reason, the value is normalized differently to print as 8.414710e-01 instead of the expected 0.841471e+00, but this is the same value. We need to fix that. Completely removing the values defines the purpose of this test IMO, we will be only checking that the folding happened, but not longer that it happened _correctly_.
Comment Actions
Why the result is printed as 0.84 vs. 8.40 is due to precision. Without support for float matching in FileCheck, the only option is to regex the position of the period.
Please fix this soon @jacquesguan . It's not good to be having failures on HEAD