mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
e4977cf750
and bitcode support for the extractvalue and insertvalue instructions and constant expressions. Note that this does not yet include CodeGen support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51468 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
310 B
LLVM
12 lines
310 B
LLVM
; RUN: llvm-as < %s |& not grep {Instruction operands must be first-class}
|
|
|
|
; This previously was for PR826, but structs are now first-class so
|
|
; the following is now valid.
|
|
|
|
%struct_4 = type { i32 }
|
|
|
|
define void @test() {
|
|
store %struct_4 zeroinitializer, %struct_4* null
|
|
unreachable
|
|
}
|