llvm-6502/test/Assembler/insertvalue-invalid-idx.ll
Bill Wendling a0126afec8 FileCheckize these testcases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154281 91177308-0d34-0410-b5e6-96231b3b80d8
2012-04-08 11:00:38 +00:00

10 lines
165 B
LLVM

; RUN: not llvm-as < %s |& FileCheck %s
; CHECK: invalid indices for insertvalue
define void @test() {
entry:
insertvalue [0 x i32] undef, i32 0, 0
ret void
}