summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll
blob: 837611480436e26774c912d930dd98b9bf6aab0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
; RUN: opt -S -mtriple=amdgcn-amd- -amdgpu-annotate-kernel-features %s | FileCheck %s 

; Test to verify if the attribute gets propagated across nested function calls

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

; CHECK: define void @func2() #[[FUNC]] {
define void @func2() #1 {
  call void @func1()
  ret void
}

; CHECK: define amdgpu_kernel void @kernel3() #[[FUNC:[0-9]+]] {
define amdgpu_kernel void @kernel3() #2 {
  call void @func2()
  ret void
}

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

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