dwarfdump: Use the index to find the right abbrev offset in DWP files
[oota-llvm.git] / test / Assembler / insertvalue-invalid-type.ll
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3 ; CHECK: insertvalue operand and field disagree in type: 'i8*' instead of 'i32'
4
5 define void @test() {
6 entry:
7   insertvalue { i32, i32 } undef, i8* null, 0
8   ret void
9 }