[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / uniform-work-group-attribute-missing.ll
blob51002e8aee141d966b5642274d4f64fd4d117985
1 ; RUN: opt -S -mtriple=amdgcn-amd- -amdgpu-annotate-kernel-features %s | FileCheck %s 
3 ; If the kernel does not have the uniform-work-group-attribute, set both callee and caller as false
5 ; CHECK: define void @foo() #[[FOO:[0-9]+]] {
6 define void @foo() #0 {
7   ret void
10 ; CHECK: define amdgpu_kernel void @kernel1() #[[FOO]] {
11 define amdgpu_kernel void @kernel1() #1 {
12   call void @foo()
13   ret void
16 attributes #0 = { "uniform-work-group-size"="true" }
18 ; CHECK: attributes #[[FOO]] = { "uniform-work-group-size"="false" }