diff options
author | Aakanksha Patil <aakanksha555@gmail.com> | 2019-03-07 00:54:04 +0000 |
---|---|---|
committer | Aakanksha Patil <aakanksha555@gmail.com> | 2019-03-07 00:54:04 +0000 |
commit | c56d2afc63540f2e85fee98617bea8d63bc713d4 (patch) | |
tree | 9aaa86731c7fabb5c509270821a88ba2da3bd31d /llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll | |
parent | db5a779f2fcb30838bd38ee8744695743d7e050d (diff) | |
download | bcm5719-llvm-c56d2afc63540f2e85fee98617bea8d63bc713d4.tar.gz bcm5719-llvm-c56d2afc63540f2e85fee98617bea8d63bc713d4.zip |
AMDGPU: Handle "uniform-work-group-size" attribute (fix for RADV)
A previous patch for "uniform-work-group-size" attribute was found to break
some RADV and possibly radeon SI tests and had to be retracted.
This patch fixes that.
Differential Revision: http://reviews.llvm.org/D58993
llvm-svn: 355574
Diffstat (limited to 'llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll')
-rw-r--r-- | llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll b/llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll new file mode 100644 index 00000000000..83761148043 --- /dev/null +++ b/llvm/test/CodeGen/AMDGPU/uniform-work-group-nested-function-calls.ll @@ -0,0 +1,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" } |