testcase for PR918
authorChris Lattner <sabre@nondot.org>
Tue, 16 Jan 2007 07:21:28 +0000 (07:21 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 16 Jan 2007 07:21:28 +0000 (07:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33253 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/CBackend/2007-01-15-NamedArrayType.ll [new file with mode: 0644]

diff --git a/test/CodeGen/CBackend/2007-01-15-NamedArrayType.ll b/test/CodeGen/CBackend/2007-01-15-NamedArrayType.ll
new file mode 100644 (file)
index 0000000..e083e5c
--- /dev/null
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc -march=c | not grep fixarray_array3
+; PR918
+
+%structtype_s = type { i32 }
+%fixarray_array3 = type [3 x %structtype_s]
+
+define i32 %witness(%fixarray_array3* %p) {
+    %q = getelementptr %fixarray_array3* %p, i32 0, i32 0, i32 0
+    %v = load i32* %q
+    ret i32 %v
+}