Remove the use of llvm.dbg.declare.
[oota-llvm.git] / test / Other / 2004-08-16-PackedGlobalConstant.ll
1 ; RUN: llvm-as < %s | llvm-dis
2
3 %foo = global <2 x int> <int 0, int 1>;
4 %bar = uninitialized global <2 x int>;
5
6 implementation   ; Functions:
7
8 void %main()
9 {
10         %t0 = load <2 x int>* %foo;
11         store <2 x int> %t0, <2 x int>* %bar   
12         ret void
13 }