1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-21 00:32:23 +00:00
llvm-6502/test/Verifier/2002-11-05-GetelementptrPointers.ll

10 lines
276 B
LLVM
Raw Normal View History

2009-01-02 07:01:27 +00:00
; RUN: not llvm-as < %s |& grep {invalid getelementptr indices}
; 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
}