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