summaryrefslogtreecommitdiff
path: root/test/Other/2004-08-20-PackedControlFlow.ll
blob: 71ac13bae93dfc83137b2e095a0678681b260a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; RUN: llvm-as < %s | llvm-dis | llvm-as

%v4f = type <4 x float>

%foo = uninitialized global %v4f
%bar = uninitialized global %v4f

implementation   ; Functions:

void %main() {
	br label %A
C:
	store %v4f %t2, %v4f* %bar  
	ret void

B:
	%t2 = add %v4f %t0, %t0
	br label %C

A:
	%t0 = load %v4f* %foo
	br label %B
}