mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
a4805cf6ef
Also add asserts that the indices are valid in InsertValueInst::init(). ExtractValueInst already asserts when constructed with invalid indices. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120956 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
161 B
LLVM
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
|
|
}
|