We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e61fe4 commit 7f97327Copy full SHA for 7f97327
llvm/test/CodeGen/RISCV/GlobalISel/irtranslator/vec-ld.ll
@@ -2,6 +2,13 @@
2
; RUN: llc -mtriple=riscv32 -mattr=+v -global-isel -stop-after=irtranslator -verify-machineinstrs < %s | FileCheck -check-prefixes=RV32I %s
3
4
define void @vload_vint8m1(ptr %pa) {
5
- %va = load <vscale x 8 x i8>, ptr %pa
6
- ret void
+ ; RV32I-LABEL: name: vload_vint8m1
+ ; RV32I: bb.1 (%ir-block.0):
7
+ ; RV32I-NEXT: liveins: $x10
8
+ ; RV32I-NEXT: {{ $}}
9
+ ; RV32I-NEXT: [[COPY:%[0-9]+]]:_(p0) = COPY $x10
10
+ ; RV32I-NEXT: [[LOAD:%[0-9]+]]:_(<vscale x 8 x s8>) = G_LOAD [[COPY]](p0) :: (load (<vscale x 8 x s8>) from %ir.pa)
11
+ ; RV32I-NEXT: PseudoRET
12
+ %va = load <vscale x 8 x i8>, ptr %pa, align 8
13
+ ret void
14
}
0 commit comments