2003-12-09 16:56:51 +00:00
|
|
|
; If the result of an instruction is only used outside of the loop, sink
|
|
|
|
; the instruction to the exit blocks instead of executing it on every
|
|
|
|
; iteration of the loop.
|
|
|
|
;
|
|
|
|
; RUN: llvm-as < %s | opt -licm | llvm-dis | grep -C1 mul | grep Out:
|
|
|
|
|
|
|
|
int %test(int %N) {
|
|
|
|
Entry:
|
|
|
|
br label %Loop
|
|
|
|
Loop:
|
|
|
|
%N_addr.0.pn = phi int [ %dec, %Loop ], [ %N, %Entry ]
|
|
|
|
%tmp.6 = mul int %N, %N_addr.0.pn
|
2003-12-09 20:50:20 +00:00
|
|
|
%tmp.7 = sub int %tmp.6, %N
|
2003-12-09 16:56:51 +00:00
|
|
|
%dec = add int %N_addr.0.pn, -1
|
|
|
|
%tmp.1 = setne int %N_addr.0.pn, 1
|
|
|
|
br bool %tmp.1, label %Loop, label %Out
|
|
|
|
Out:
|
2003-12-09 20:50:20 +00:00
|
|
|
ret int %tmp.7
|
2003-12-09 16:56:51 +00:00
|
|
|
}
|