mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
e32ff5d4f1
These won't work as expected now, so error on them to avoid wasting time debugging this in the future. llvm-svn: 334269
10 lines
360 B
LLVM
10 lines
360 B
LLVM
; RUN: not llc -mtriple=amdgcn-amd-amdhsa -o /dev/null %s 2>&1 | FileCheck %s
|
|
|
|
@lds = internal addrspace(3) global float undef, align 4
|
|
|
|
; CHECK: error: <unknown>:0:0: in function func_use_lds_global void (): local memory global used by non-kernel function
|
|
define void @func_use_lds_global() {
|
|
store float 0.0, float addrspace(3)* @lds, align 4
|
|
ret void
|
|
}
|