| Issue | 113802 |
|---|---|
| Summary | erfc(x) are not folded at the compilation time when (x) is constant |
| Labels | new issue |
| Assignees | |
| Reporter | fawdlstty |
Consider the following example.
<https://godbolt.org/z/EYKK96odf>
```cpp
#include <cmath>
double f1() {
return std::erfc(3.0);
}
double f2() {
return std::erfcf(3.0f);
}
double f3() {
return std::erfcl(3.0);
}
```
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
