1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Assembler/extractvalue-invalid-idx.ll
Bill Wendling 90c6d27935 FileCheckize these testcases.
llvm-svn: 154281
2012-04-08 11:00:38 +00:00

11 lines
181 B
LLVM

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