xref: /llvm-project/llvm/test/Verifier/non-integer-gep-index.ll (revision 753395fa0abe3b612e4b6e36c78b516ddad2b2a7)
1; RUN: not opt -verify %s.bc -disable-output
2
3; Test that verifier checks that gep indexes has correct type
4; Specifically we want to check for the following pattern:
5;   %A1 = alloca i64
6;   %G = getelementptr i64, i64* %A1, %A1
7; IR parser checks for this pattern independently from the verifier, so it's
8; impossible to load from .ll file. Hence in this test we use bytecode input.
9