Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / RISCV / rvv / scalable-vector-struct.ll
blob030555ca76c1ff09ed22aeb92d2e3e0e26681c0f
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=riscv32 -mattr=+v -verify-machineinstrs < %s | FileCheck %s
4 ; This demonstrates that we can pass a struct containing scalable vectors across
5 ; a basic block.
7 define i32 @foo({ {<vscale x 2 x i32>, <vscale x 2 x i32>}, i32 } %x, <vscale x 2 x i32>* %y, <vscale x 2 x i32>* %z) {
8 ; CHECK-LABEL: foo:
9 ; CHECK:       # %bb.0: # %entry
10 ; CHECK-NEXT:    vs1r.v v8, (a1)
11 ; CHECK-NEXT:    vs1r.v v9, (a2)
12 ; CHECK-NEXT:    ret
13 entry:
14   br label %return
16 return:
17   %a = extractvalue { {<vscale x 2 x i32>, <vscale x 2 x i32>}, i32 } %x, 1
18   %b = extractvalue { {<vscale x 2 x i32>, <vscale x 2 x i32>}, i32 } %x, 0, 0
19   %c = extractvalue { {<vscale x 2 x i32>, <vscale x 2 x i32>}, i32 } %x, 0, 1
20   store <vscale x 2 x i32> %b, <vscale x 2 x i32>* %y
21   store <vscale x 2 x i32> %c, <vscale x 2 x i32>* %z
23   ret i32 %a