Matt Arsenault | 99c1452 | 2016-04-25 19:27:24 +0000 | [diff] [blame] | 1 | ; RUN: not llc -march=amdgcn -mcpu=bonaire -mattr=-promote-alloca < %s 2>&1 | FileCheck -check-prefix=ERROR %s |
2 | |||||
3 | ; ERROR: error: <unknown>:0:0: in function use_group_to_global_addrspacecast void (i32 addrspace(3)*): invalid addrspacecast | ||||
4 | define void @use_group_to_global_addrspacecast(i32 addrspace(3)* %ptr) { | ||||
5 | %stof = addrspacecast i32 addrspace(3)* %ptr to i32 addrspace(1)* | ||||
6 | store volatile i32 0, i32 addrspace(1)* %stof | ||||
7 | ret void | ||||
8 | } |