1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00
llvm-mirror/test/CodeGen/AMDGPU/uniform-work-group-test.ll
Aakanksha Patil 6bc0e0f4bc 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
2019-03-07 00:54:04 +00:00

36 lines
792 B
LLVM

; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -amdgpu-annotate-kernel-features %s | FileCheck %s
; CHECK: define void @func1() #[[FUNC:[0-9]+]] {
define void @func1() {
ret void
}
; CHECK: define void @func4() #[[FUNC]] {
define void @func4() {
ret void
}
; CHECK: define void @func2() #[[FUNC]] {
define void @func2() #0 {
call void @func4()
call void @func1()
ret void
}
; CHECK: define void @func3() #[[FUNC]] {
define void @func3() {
call void @func1()
ret void
}
; CHECK: define amdgpu_kernel void @kernel3() #[[FUNC:[0-9]+]] {
define amdgpu_kernel void @kernel3() #0 {
call void @func2()
call void @func3()
ret void
}
attributes #0 = { "uniform-work-group-size"="false" }
; CHECK: attributes #[[FUNC]] = { "amdgpu-flat-scratch" "uniform-work-group-size"="false" }