Remove some support for ReturnInsts with multiple operands, and for
[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 }