Files
llvm-project/llvm/test/CodeGen/AMDGPU/lds-initializer.ll
Jay Foad fee17b3a96 [AMDGPU] Remove most uses of /dev/null in tests (#156630)
Using options like -filetype=null instead should allow tools to save
some work by not generating any output.
2025-09-03 16:39:29 +01:00

14 lines
562 B
LLVM

; RUN: not llc -mtriple=amdgcn -mcpu=tahiti < %s -filetype=null 2>&1 | FileCheck %s
; RUN: not llc -mtriple=amdgcn -mcpu=tonga < %s -filetype=null 2>&1 | FileCheck %s
; CHECK: lds: unsupported initializer for address space
@lds = addrspace(3) global [8 x i32] [i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8]
define amdgpu_kernel void @load_init_lds_global(ptr addrspace(1) %out, i1 %p) {
%gep = getelementptr [8 x i32], ptr addrspace(3) @lds, i32 0, i32 10
%ld = load i32, ptr addrspace(3) %gep
store i32 %ld, ptr addrspace(1) %out
ret void
}