slyubomirsky opened a new pull request #9337:
URL: https://github.com/apache/tvm/pull/9337
PR #9223 added a fast math flags setting to the LLVM codegen. The setting
checks if the LLVM version is >= 6.0 and calls the below lines
```
if (fast_math_contract) {
fmf.setAllowContract();
}
```
Recent LLVM versions have a default argument of `true` to
`llvm::FastMathFlags::setAllowContract()`. However, LLVM 6.0 does not have a
default argument for that method, so this fails to compile because it expects
an explicit argument. This PR makes the argument explicit to be compatible with
LLVM 6.0 (the version my system happened to have).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]