Fix the remaining TCL-style quotes found in the testsuite. This is
[oota-llvm.git] / test / Verifier / 2002-11-05-GetelementptrPointers.ll
1 ; RUN: not llvm-as < %s 2>&1 | grep "invalid getelementptr indices"
2
3 ; This testcase is invalid because we are indexing into a pointer that is 
4 ; contained WITHIN a structure.
5
6 define void @test({i32, i32*} * %X) {
7         getelementptr {i32, i32*} * %X, i32 0, i32 1, i32 0
8         ret void
9 }