diff options
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/uniform-work-group-attribute-missing.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/uniform-work-group-attribute-missing.ll | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/uniform-work-group-attribute-missing.ll b/llvm/test/CodeGen/AMDGPU/uniform-work-group-attribute-missing.ll deleted file mode 100644 index 51002e8aee1..00000000000 --- a/llvm/test/CodeGen/AMDGPU/uniform-work-group-attribute-missing.ll +++ /dev/null @@ -1,18 +0,0 @@ -; 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" } |