FileCheck-ize this test and make it more precise. This is in preparation
[oota-llvm.git] / test / Assembler / extractvalue-invalid-idx.ll
1 ; RUN: not llvm-as < %s |& grep {invalid indices for extractvalue}
2 ; PR4170
3
4 define void @test() {
5 entry:
6         extractvalue [0 x i32] undef, 0
7         ret void
8 }