summaryrefslogtreecommitdiff
path: root/test/CodeGen/AMDGPU/over-max-lds-size.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AMDGPU/over-max-lds-size.ll')
-rw-r--r--test/CodeGen/AMDGPU/over-max-lds-size.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGen/AMDGPU/over-max-lds-size.ll b/test/CodeGen/AMDGPU/over-max-lds-size.ll
new file mode 100644
index 0000000000000..32ad9aba04edc
--- /dev/null
+++ b/test/CodeGen/AMDGPU/over-max-lds-size.ll
@@ -0,0 +1,14 @@
+; RUN: not llc -march=amdgcn -mcpu=tahiti < %s 2>&1 | FileCheck -check-prefix=ERROR %s
+; RUN: not llc -march=amdgcn -mcpu=hawaii < %s 2>&1 | FileCheck -check-prefix=ERROR %s
+; RUN: not llc -march=amdgcn -mcpu=fiji < %s 2>&1 | FileCheck -check-prefix=ERROR %s
+
+; ERROR: error: local memory limit exceeded (400000) in use_huge_lds
+
+@huge = internal unnamed_addr addrspace(3) global [100000 x i32] undef, align 4
+
+define void @use_huge_lds() {
+entry:
+ %v0 = getelementptr inbounds [100000 x i32], [100000 x i32] addrspace(3)* @huge, i32 0, i32 0
+ store i32 0, i32 addrspace(3)* %v0
+ ret void
+}