Skip to content

Commit 7451270

Browse files
committed
Pre-commit test
1 parent 97f5542 commit 7451270

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
2+
; RUN: llc -mtriple=riscv64 -mattr='+v,+zvl512b' < %s | FileCheck %s
3+
4+
define <2 x float> @redundant_vfmv(<2 x float> %arg0, <64 x float> %arg1, <64 x float> %arg2) {
5+
; CHECK-LABEL: redundant_vfmv:
6+
; CHECK: # %bb.0:
7+
; CHECK-NEXT: li a0, 64
8+
; CHECK-NEXT: vsetvli zero, a0, e32, m4, ta, ma
9+
; CHECK-NEXT: vfredusum.vs v9, v12, v8
10+
; CHECK-NEXT: vsetivli zero, 1, e32, mf2, ta, ma
11+
; CHECK-NEXT: vslidedown.vi v8, v8, 1
12+
; CHECK-NEXT: vfmv.f.s fa5, v8
13+
; CHECK-NEXT: vfmv.s.f v8, fa5
14+
; CHECK-NEXT: vsetvli zero, a0, e32, m4, ta, ma
15+
; CHECK-NEXT: vfredusum.vs v8, v16, v8
16+
; CHECK-NEXT: vfmv.f.s fa5, v8
17+
; CHECK-NEXT: vsetivli zero, 2, e32, mf2, ta, ma
18+
; CHECK-NEXT: vrgather.vi v8, v9, 0
19+
; CHECK-NEXT: vfslide1down.vf v8, v8, fa5
20+
; CHECK-NEXT: ret
21+
%s0 = extractelement <2 x float> %arg0, i64 0
22+
%r0 = tail call reassoc float @llvm.vector.reduce.fadd.v64f32(float %s0, <64 x float> %arg1)
23+
%a0 = insertelement <2 x float> poison, float %r0, i64 0
24+
%s1 = extractelement <2 x float> %arg0, i64 1
25+
%r1 = tail call reassoc float @llvm.vector.reduce.fadd.v64f32(float %s1, <64 x float> %arg2)
26+
%a1 = insertelement <2 x float> %a0, float %r1, i64 1
27+
ret <2 x float> %a1
28+
}

0 commit comments

Comments
 (0)