mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
9 lines
165 B
LLVM
9 lines
165 B
LLVM
|
; RUN: not llvm-as < %s |& grep {invalid indices for extractvalue}
|
||
|
; PR4170
|
||
|
|
||
|
define void @test() {
|
||
|
entry:
|
||
|
extractvalue [0 x i32] undef, 0
|
||
|
ret void
|
||
|
}
|