YouCompleteMe/cpp/llvm/test/Assembler/extractvalue-invalid-idx.ll
2012-07-05 17:51:06 -07: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
}