1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 14:02:50 +01:00
llvm-mirror/test/Regression/Transforms/LICM/basictest.ll
Chris Lattner 717e99c79a A basic test that LICM is working
llvm-svn: 2610
2002-05-10 22:27:49 +00:00

18 lines
285 B
LLVM

; RUN: as < %s | opt -licm | 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
}