llvm-project/llvm/test/Assembler/extractvalue-no-idx.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
148 B
LLVM
Raw Normal View History

; RUN: not llvm-as < %s 2>&1 | FileCheck %s
; CHECK: expected index
define void @f1() {
extractvalue <{ i32, i32 }> undef, !dbg !0
ret void
}