brintos

brintos / llvm-project-archived public Read only

0
0
Text · 565 B · da92dcd Raw
14 lines · plain
1; RUN: not llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx1250 < %s 2>&1 | FileCheck -check-prefix=ERROR %s2 3; GFX1250 supports upto 320 KB LDS memory.4; This is a negative test to check when the LDS size exceeds the max usable limit.5 6; ERROR: error: <unknown>:0:0: local memory (327684) exceeds limit (327680) in function 'test_lds_limit'7@dst = addrspace(3) global [81921 x i32] undef8 9define amdgpu_kernel void @test_lds_limit(i32 %val) {10  %gep = getelementptr [81921 x i32], ptr addrspace(3) @dst, i32 0, i32 10011  store i32 %val, ptr addrspace(3) %gep12  ret void13}14