[RISCV] Support 'f' Inline Assembly Constraint
[llvm-core.git] / test / CodeGen / AMDGPU / uniform-work-group-propagate-attribute.ll
blob15131a4e31e309e48eab6cb571383ad5d8b102be
1 ; RUN: opt -S -mtriple=amdgcn-amd- -amdgpu-annotate-kernel-features %s | FileCheck %s 
3 ; Propagate the uniform-work-group-attribute from the kernel to callee if it doesn't have it
4 ; CHECK: define void @func() #[[FUNC:[0-9]+]] {
5 define void @func() #0 {
6   ret void
9 ; CHECK: define amdgpu_kernel void @kernel1() #[[KERNEL1:[0-9]+]] {
10 define amdgpu_kernel void @kernel1() #1 {
11   call void @func()
12   ret void
15 ; External declaration of a function
16 ; CHECK: define weak_odr void @weak_func() #[[FUNC]] {
17 define weak_odr void @weak_func() #0 {
18   ret void
21 ; CHECK: define amdgpu_kernel void @kernel2() #[[KERNEL2:[0-9]+]] {
22 define amdgpu_kernel void @kernel2() #2 {
23   call void @weak_func()
24   ret void
27 attributes #0 = { nounwind }
28 attributes #1 = { "uniform-work-group-size"="false" }
29 attributes #2 = { "uniform-work-group-size"="true" }
31 ; CHECK: attributes #[[FUNC]] = { nounwind "uniform-work-group-size"="false" }
32 ; CHECK: attributes #[[KERNEL1]] = { "uniform-work-group-size"="false" }
33 ; CHECK: attributes #[[KERNEL2]] = { "uniform-work-group-size"="true" }