summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/AMDGPU/uniform-work-group-attribute-missing.ll
blob: 51002e8aee141d966b5642274d4f64fd4d117985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: opt -S -mtriple=amdgcn-amd- -amdgpu-annotate-kernel-features %s | FileCheck %s 

; If the kernel does not have the uniform-work-group-attribute, set both callee and caller as false

; CHECK: define void @foo() #[[FOO:[0-9]+]] {
define void @foo() #0 {
  ret void
}

; CHECK: define amdgpu_kernel void @kernel1() #[[FOO]] {
define amdgpu_kernel void @kernel1() #1 {
  call void @foo()
  ret void
}

attributes #0 = { "uniform-work-group-size"="true" }

; CHECK: attributes #[[FOO]] = { "uniform-work-group-size"="false" }
OpenPOWER on IntegriCloud