[llvm] d5b48ce - [ValueTracking] Add tests for non-constant idx for fpclass of `insertelement`; NFC
Noah Goldstein via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 6 15:51:30 PDT 2024
Author: Noah Goldstein
Date: 2024-04-06T17:51:15-05:00
New Revision: d5b48ceb74e3ef83487f7220c6e2130195c07cc6
URL: https://github.com/llvm/llvm-project/commit/d5b48ceb74e3ef83487f7220c6e2130195c07cc6
DIFF: https://github.com/llvm/llvm-project/commit/d5b48ceb74e3ef83487f7220c6e2130195c07cc6.diff
LOG: [ValueTracking] Add tests for non-constant idx for fpclass of `insertelement`; NFC
Added:
Modified:
llvm/test/Transforms/Attributor/nofpclass.ll
Removed:
################################################################################
diff --git a/llvm/test/Transforms/Attributor/nofpclass.ll b/llvm/test/Transforms/Attributor/nofpclass.ll
index 4df647cf3bb5b2..501c6d5de9d2b0 100644
--- a/llvm/test/Transforms/Attributor/nofpclass.ll
+++ b/llvm/test/Transforms/Attributor/nofpclass.ll
@@ -1513,6 +1513,25 @@ define <4 x float> @insertelement_constant_chain() {
ret <4 x float> %ins.3
}
+define <4 x float> @insertelement_non_constant_chain(i32 %idx) {
+; CHECK: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
+; CHECK-LABEL: define <4 x float> @insertelement_non_constant_chain
+; CHECK-SAME: (i32 [[IDX:%.*]]) #[[ATTR3]] {
+; CHECK-NEXT: [[INS_0:%.*]] = insertelement <4 x float> poison, float 1.000000e+00, i32 0
+; CHECK-NEXT: [[INS_1:%.*]] = insertelement <4 x float> [[INS_0]], float 0.000000e+00, i32 1
+; CHECK-NEXT: [[INS_2:%.*]] = insertelement <4 x float> [[INS_1]], float -9.000000e+00, i32 2
+; CHECK-NEXT: [[INS_4:%.*]] = insertelement <4 x float> [[INS_2]], float 3.000000e+00, i32 3
+; CHECK-NEXT: [[INS_3:%.*]] = insertelement <4 x float> [[INS_2]], float 4.000000e+00, i32 [[IDX]]
+; CHECK-NEXT: ret <4 x float> [[INS_3]]
+;
+ %ins.0 = insertelement <4 x float> poison, float 1.0, i32 0
+ %ins.1 = insertelement <4 x float> %ins.0, float 0.0, i32 1
+ %ins.2 = insertelement <4 x float> %ins.1, float -9.0, i32 2
+ %ins.3 = insertelement <4 x float> %ins.2, float 3.0, i32 3
+ %ins.4 = insertelement <4 x float> %ins.2, float 4.0, i32 %idx
+ ret <4 x float> %ins.4
+}
+
define <vscale x 4 x float> @insertelement_scalable_constant_chain() {
; CHECK: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
; CHECK-LABEL: define <vscale x 4 x float> @insertelement_scalable_constant_chain
More information about the llvm-commits
mailing list