llvm-6502/test/CodeGen/CBackend/2007-01-15-NamedArrayType.ll
Chris Lattner efe0213626 testcase for PR918
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33253 91177308-0d34-0410-b5e6-96231b3b80d8
2007-01-16 07:21:28 +00:00

12 lines
293 B
LLVM

; 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
}