This is one of the first steps at moving to replace target-dependent
[oota-llvm.git] / test / Bitcode / 2009-06-11-FirstClassAggregateConstant.ll
1 ; RUN: llvm-as < %s | llvm-dis -disable-output
2 ; PR4373
3
4 @foo = weak global { i32 } zeroinitializer              
5 @bar = weak global i32 0                
6
7 define void @test() {
8 entry:
9         store { i32 } zeroinitializer, { i32 }* @foo
10         store i32 1, i32* @bar
11         ret void
12 }