mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
dd9ab77318
Currently the default C calling convention functions are treated the same as compute kernels. Make this explicit so the default calling convention can be changed to a non-kernel. Converted with perl -pi -e 's/define void/define amdgpu_kernel void/' on the relevant test directories (and undoing in one place that actually wanted a non-kernel). llvm-svn: 298444
58 lines
1.6 KiB
LLVM
58 lines
1.6 KiB
LLVM
; RUN: not llc -mtriple=amdgcn--amdhsa -mcpu=fiji -verify-machineinstrs < %s 2>&1 | FileCheck %s
|
|
|
|
; CHECK: can't parse integer attribute amdgpu-num-sgpr
|
|
define amdgpu_kernel void @unparseable_single_0() #0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #0 = {"amdgpu-num-sgpr"}
|
|
|
|
; CHECK: can't parse integer attribute amdgpu-num-sgpr
|
|
define amdgpu_kernel void @unparseable_single_1() #1 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #1 = {"amdgpu-num-sgpr"="k"}
|
|
|
|
; CHECK: can't parse integer attribute amdgpu-num-sgpr
|
|
define amdgpu_kernel void @unparseable_single_2() #2 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #2 = {"amdgpu-num-sgpr"="1,2"}
|
|
|
|
; CHECK: can't parse first integer attribute amdgpu-flat-work-group-size
|
|
define amdgpu_kernel void @unparseable_pair_0() #3 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #3 = {"amdgpu-flat-work-group-size"}
|
|
|
|
; CHECK: can't parse first integer attribute amdgpu-flat-work-group-size
|
|
define amdgpu_kernel void @unparseable_pair_1() #4 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #4 = {"amdgpu-flat-work-group-size"="k"}
|
|
|
|
; CHECK: can't parse second integer attribute amdgpu-flat-work-group-size
|
|
define amdgpu_kernel void @unparseable_pair_2() #5 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #5 = {"amdgpu-flat-work-group-size"="1"}
|
|
|
|
; CHECK: can't parse second integer attribute amdgpu-flat-work-group-size
|
|
define amdgpu_kernel void @unparseable_pair_3() #6 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #6 = {"amdgpu-flat-work-group-size"="1,k"}
|
|
|
|
; CHECK: can't parse second integer attribute amdgpu-flat-work-group-size
|
|
define amdgpu_kernel void @unparseable_pair_4() #7 {
|
|
entry:
|
|
ret void
|
|
}
|
|
attributes #7 = {"amdgpu-flat-work-group-size"="1,2,3"}
|