Issue 113806
Summary tgamma(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/7aoPbzWEo

```cpp
#include <cmath>

double f1() {
  return std::tgamma(3.0);
}

double f2() {
  return std::tgammaf(3.0f);
}

double f3() {
  return std::tgammal(3.0);
}
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to