mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
4572ce85b0
llvm-svn: 33296
18 lines
310 B
LLVM
18 lines
310 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis
|
|
|
|
void "testfunc"(int %i) {
|
|
|
|
br label %Loop
|
|
|
|
Loop:
|
|
%j = phi uint [0, %0], [%Next, %Loop]
|
|
%i = cast int %i to uint
|
|
%i2 = mul uint %i, 17
|
|
%Next = add uint %j, %i2
|
|
%cond = seteq uint %Next, 0
|
|
br bool %cond, label %Out, label %Loop
|
|
|
|
Out:
|
|
ret void
|
|
}
|