Home | History | Annotate | Download | only in Assembler
      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 }
      9