llvm-6502/test/Other/2004-08-20-PackedControlFlow.ll

24 lines
320 B
LLVM
Raw Normal View History

; 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
}