[llvm-objdump] - Remove one overload of reportError. NFCI.
[llvm-complete.git] / test / CodeGen / AMDGPU / uniform-work-group-nested-function-calls.ll
blob837611480436e26774c912d930dd98b9bf6aab0f
1 ; RUN: opt -S -mtriple=amdgcn-amd- -amdgpu-annotate-kernel-features %s | FileCheck %s 
3 ; Test to verify if the attribute gets propagated across nested function calls
5 ; CHECK: define void @func1() #[[FUNC:[0-9]+]] {
6 define void @func1() #0 {
7   ret void
10 ; CHECK: define void @func2() #[[FUNC]] {
11 define void @func2() #1 {
12   call void @func1()
13   ret void
16 ; CHECK: define amdgpu_kernel void @kernel3() #[[FUNC:[0-9]+]] {
17 define amdgpu_kernel void @kernel3() #2 {
18   call void @func2()
19   ret void
22 attributes #2 = { "uniform-work-group-size"="true" }
24 ; CHECK: attributes #[[FUNC]] = { "uniform-work-group-size"="true" }