summaryrefslogtreecommitdiff
path: root/release_23/test/Verifier/2006-07-11-StoreStruct.ll
blob: 655e4b748ef5e48d1930205eae95a3f9ff05b38b (plain)
1
2
3
4
5
6
7
8
9
; RUN: not llvm-as < %s |& grep {Instruction operands must be first-class}
; PR826

        %struct_4 = type { i32 }

define void @test() {
        store %struct_4 zeroinitializer, %struct_4* null
        unreachable
}