2003-10-12 22:26:42 +00:00
|
|
|
; The loop canonicalization pass should guarantee that there is one backedge
|
|
|
|
; for all loops. This allows the -indvars pass to recognize the %IV
|
|
|
|
; induction variable in this testcase.
|
|
|
|
|
2006-12-02 04:23:10 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -indvars | llvm-dis | grep indvar
|
2003-10-12 22:26:42 +00:00
|
|
|
|
|
|
|
int %test(bool %C) {
|
|
|
|
br label %Loop
|
|
|
|
Loop:
|
2003-10-13 03:31:42 +00:00
|
|
|
%IV = phi uint [1, %0], [%IV2, %BE1], [%IV2, %BE2]
|
2003-10-12 22:26:42 +00:00
|
|
|
%IV2 = add uint %IV, 2
|
|
|
|
br bool %C, label %BE1, label %BE2
|
|
|
|
BE1:
|
|
|
|
br label %Loop
|
|
|
|
BE2:
|
|
|
|
br label %Loop
|
|
|
|
}
|