summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/NVPTX/LoadStoreVectorizer.ll
blob: 1a4b0bad36e1b386d5f12d7b46f785a493b592fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llc < %s | FileCheck -check-prefix=ENABLED %s
; RUN: llc -disable-nvptx-load-store-vectorizer < %s | FileCheck -check-prefix=DISABLED %s
target triple = "nvptx64-nvidia-cuda"

; Check that the load-store vectorizer is enabled by default for nvptx, and
; that it's disabled by the appropriate flag.

; ENABLED: ld.v2.{{.}}32
; DISABLED: ld.{{.}}32
; DISABLED: ld.{{.}}32
define i32 @f(i32* %p) {
  %p.1 = getelementptr i32, i32* %p, i32 1
  %v0 = load i32, i32* %p, align 8
  %v1 = load i32, i32* %p.1, align 4
  %sum = add i32 %v0, %v1
  ret i32 %sum
}
OpenPOWER on IntegriCloud