| Issue | 113804 |
|---|---|
| Summary | lgamma(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/Pn83ccxrM>
#include <cmath>
double f1() {
return std::lgamma(3.0);
}
double f2() {
return std::lgammaf(3.0f);
}
double f3() {
return std::lgammal(3.0);
}
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
