1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Assembler/insertvalue-invalid-idx.ll
Frits van Bommel e390b379ae Fix PR 4170 by having ExtractValueInst::getIndexedType() reject out-of-bounds indexing.
Also add asserts that the indices are valid in InsertValueInst::init(). ExtractValueInst already asserts when constructed with invalid indices.

llvm-svn: 120956
2010-12-05 20:50:26 +00:00

8 lines
161 B
LLVM

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