enhance vmcore to know that udiv's can be exact, and add a trivial
[oota-llvm.git] / test / Assembler / insertvalue-invalid-idx.ll
1 ; RUN: not llvm-as < %s |& grep {invalid indices for insertvalue}
2
3 define void @test() {
4 entry:
5         insertvalue [0 x i32] undef, i32 0, 0
6         ret void
7 }