repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation tests. NFC
[llvm-core.git]
/
test
/
Assembler
/
extractvalue-invalid-idx.ll
blob
b5a398c2ccc5bfff07e47c6ee24dcc4da653c5ef
1
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
; PR4170
3
4
; CHECK: invalid indices for extractvalue
5
6
define void @test() {
7
entry:
8
extractvalue [0 x i32] undef, 0
9
ret void
10
}