[llvm] [ConstantFold] Fold `erf` and `erff` when the input parameter is a constant value. (PR #113079)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 20 08:26:23 PDT 2024
================
@@ -0,0 +1,185 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
+; RUN: opt < %s -passes=instcombine -S | FileCheck %s
+
+define float @erff_const() {
+; CHECK-LABEL: define float @erff_const() {
+; CHECK-NEXT: [[R:%.*]] = call float @erff(float 5.000000e-01)
+; CHECK-NEXT: ret float 0x3FE0A7EF60000000
+;
+ %r = call float @erff(float 5.000000e-01)
+ ret float %r
+}
+
+define double @erf_const() {
+; CHECK-LABEL: define double @erf_const() {
+; CHECK-NEXT: [[R:%.*]] = call double @erf(double -5.000000e-01)
+; CHECK-NEXT: ret double 0xBFE0A7EF5C18EDD2
+;
+ %r = call double @erf(double -5.000000e-01)
+ ret double %r
+}
+
+define float @erff_zero() {
+; CHECK-LABEL: define float @erff_zero() {
+; CHECK-NEXT: [[R:%.*]] = call float @erff(float 0.000000e+00)
+; CHECK-NEXT: ret float 0.000000e+00
+;
+ %r = call float @erff(float 0.000000e+00)
+ ret float %r
+}
+
+define double @erf_zero() {
+; CHECK-LABEL: define double @erf_zero() {
+; CHECK-NEXT: [[R:%.*]] = call double @erf(double 0.000000e+00)
+; CHECK-NEXT: ret double 0.000000e+00
+;
+ %r = call double @erf(double 0.000000e+00)
----------------
arsenm wrote:
Hm, it does seem these are deleted later. I would still expect them to be immediately killed, but this seems to be a more widespread issue
https://github.com/llvm/llvm-project/pull/113079
More information about the llvm-commits
mailing list