1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/test/Verifier/2002-11-05-GetelementptrPointers.ll

10 lines
276 B
LLVM
Raw Normal View History

; RUN: not llvm-as < %s |& grep {invalid getelementptr indices}
2004-11-07 00:08:26 +01:00
; This testcase is invalid because we are indexing into a pointer that is
; contained WITHIN a structure.
define void @test({i32, i32*} * %X) {
getelementptr {i32, i32*} * %X, i32 0, i32 1, i32 0
ret void
}