reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
; RUN: opt < %s -loop-simplify

define void @foo(i1 %C) {
	br i1 %C, label %T, label %F
T:		; preds = %0
	br label %Loop
F:		; preds = %0
	br label %Loop
Loop:		; preds = %L2, %Loop, %F, %T
	%Val = phi i32 [ 0, %T ], [ 1, %F ], [ 2, %Loop ], [ 3, %L2 ]		; <i32> [#uses=0]
	br i1 %C, label %Loop, label %L2
L2:		; preds = %Loop
	br label %Loop
}