summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/AMDGPU/vectorize-buffer-fat-pointer.ll
blob: c109d38b9cb2fb2641751368ed56028edabd8afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: opt -S -mtriple=amdgcn-- -passes=load-store-vectorizer < %s | FileCheck -check-prefix=OPT %s

; OPT-LABEL: @func(
define void @func(ptr addrspace(7) %out) {
entry:
  %a1 = getelementptr i32, ptr addrspace(7) %out, i32 1
  %a2 = getelementptr i32, ptr addrspace(7) %out, i32 2
  %a3 = getelementptr i32, ptr addrspace(7) %out, i32 3

; OPT: store <4 x i32> <i32 0, i32 1, i32 2, i32 3>, ptr addrspace(7) %out, align 4
  store i32 0, ptr addrspace(7) %out
  store i32 1, ptr addrspace(7) %a1
  store i32 2, ptr addrspace(7) %a2
  store i32 3, ptr addrspace(7) %a3
  ret void
}