1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Add testcase for when there is no loop header

llvm-svn: 2611
This commit is contained in:
Chris Lattner 2002-05-10 22:43:26 +00:00
parent 717e99c79a
commit 1e198023b9

View File

@ -0,0 +1,21 @@
; Test that LICM works when there is not a loop-preheader
; RUN: as < %s | opt -licm | dis
void "testfunc"(int %i, bool %ifcond) {
br bool %ifcond, label %Then, label %Else
Then:
br label %Loop
Else:
br label %Loop
Loop:
%j = phi uint [0, %Then], [12, %Else], [%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
}