Add testcase for prev. commit. Minor fixes
[oota-llvm.git] / test / Verifier / 2006-07-11-StoreStruct.ll
1 ; RUN: not llvm-as < %s |& grep {Instruction operands must be first-class}
2 ; PR826
3
4         %struct_4 = type { i32 }
5
6 define void @test() {
7         store %struct_4 zeroinitializer, %struct_4* null
8         unreachable
9 }