mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
ada042152b
Somehow this was missing from the DAG path, but not global isel.
23 lines
1.1 KiB
LLVM
23 lines
1.1 KiB
LLVM
; RUN: not llc -march=amdgcn -mcpu=bonaire -mattr=-promote-alloca < %s 2>&1 | FileCheck -check-prefix=ERROR %s
|
|
|
|
; ERROR: error: <unknown>:0:0: in function use_group_to_global_addrspacecast void (i32 addrspace(3)*): invalid addrspacecast
|
|
define amdgpu_kernel void @use_group_to_global_addrspacecast(i32 addrspace(3)* %ptr) {
|
|
%stof = addrspacecast i32 addrspace(3)* %ptr to i32 addrspace(1)*
|
|
store volatile i32 0, i32 addrspace(1)* %stof
|
|
ret void
|
|
}
|
|
|
|
; ERROR: error: <unknown>:0:0: in function use_constant32bit_to_flat_addrspacecast void (i32 addrspace(6)*): invalid addrspacecast
|
|
define amdgpu_kernel void @use_constant32bit_to_flat_addrspacecast(i32 addrspace(6)* %ptr) #0 {
|
|
%stof = addrspacecast i32 addrspace(6)* %ptr to i32*
|
|
store volatile i32 7, i32* %stof
|
|
ret void
|
|
}
|
|
|
|
; ERROR: error: <unknown>:0:0: in function use_local_to_constant32bit_addrspacecast void (i32 addrspace(3)*): invalid addrspacecast
|
|
define amdgpu_kernel void @use_local_to_constant32bit_addrspacecast(i32 addrspace(3)* %ptr) #0 {
|
|
%stof = addrspacecast i32 addrspace(3)* %ptr to i32 addrspace(6)*
|
|
%load = load volatile i32, i32 addrspace(6)* %stof
|
|
ret void
|
|
}
|