1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Assembler/insertvalue-invalid-idx.ll
Bill Wendling 90c6d27935 FileCheckize these testcases.
llvm-svn: 154281
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
}