blob: 8c03f9affba4a214550806f71e0be40c66bb2bb2 [file] [log] [blame]
Chris Lattnerc9b208c2006-08-27 22:44:20 +00001; RUN: llvm-as < %s | llvm-dis | llvm-as > /dev/null
Chris Lattner0c97a622004-08-20 08:34:27 +00002
3%v4f = type <4 x float>
4
5%foo = uninitialized global %v4f
6%bar = uninitialized global %v4f
7
8implementation ; Functions:
9
10void %main() {
11 br label %A
12C:
13 store %v4f %t2, %v4f* %bar
14 ret void
15
16B:
17 %t2 = add %v4f %t0, %t0
18 br label %C
19
20A:
21 %t0 = load %v4f* %foo
22 br label %B
23}