Don't hard code the desired alignment for loops -- it isn't 16-bytes on
[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 }