blob: 638e862cc6f637186461e41783c6c883c93236d6 [file] [log] [blame]
Reid Spencer69ccadd2006-12-02 04:23:10 +00001; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
Reid Spencer442729a2004-08-20 06:06:43 +00002
3%foo = global <2 x int> <int 0, int 1>;
4%bar = uninitialized global <2 x int>;
5
6implementation ; Functions:
7
8void %main()
9{
10 %t0 = load <2 x int>* %foo;
11 store <2 x int> %t0, <2 x int>* %bar
12 ret void
Dan Gohman28beeea2007-08-15 13:36:28 +000013}