mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
90c6d27935
llvm-svn: 154281
10 lines
165 B
LLVM
10 lines
165 B
LLVM
; RUN: not llvm-as < %s |& FileCheck %s
|
|
|
|
; CHECK: invalid indices for insertvalue
|
|
|
|
define void @test() {
|
|
entry:
|
|
insertvalue [0 x i32] undef, i32 0, 0
|
|
ret void
|
|
}
|