mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
8155d6d8d9
This serves as a test of that feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32806 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|