mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
e53f2eed3e
Similar to r269948, but for argument lowering. Fixes PR27762 Differential Revision: http://reviews.llvm.org/D20430 llvm-svn: 270856
17 lines
495 B
LLVM
17 lines
495 B
LLVM
; RUN: not llc -march=amdgcn -mtriple=amdgcn-unknown-amdhsa < %s 2>&1 | FileCheck %s
|
|
|
|
; CHECK: in function pixel_s{{.*}}: unsupported non-compute shaders with HSA
|
|
define amdgpu_ps void @pixel_shader() #0 {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: in function vertex_s{{.*}}: unsupported non-compute shaders with HSA
|
|
define amdgpu_vs void @vertex_shader() #0 {
|
|
ret void
|
|
}
|
|
|
|
; CHECK: in function geometry_s{{.*}}: unsupported non-compute shaders with HSA
|
|
define amdgpu_gs void @geometry_shader() #0 {
|
|
ret void
|
|
}
|