Reid Spencer | 69ccadd | 2006-12-02 04:23:10 +0000 | [diff] [blame] | 1 | ; RUN: llvm-upgrade < %s | llvm-as | llvm-dis |
Reid Spencer | 442729a | 2004-08-20 06:06:43 +0000 | [diff] [blame] | 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 | ||||
Dan Gohman | 28beeea | 2007-08-15 13:36:28 +0000 | [diff] [blame^] | 13 | } |