llvm-project/llvm/test/Analysis/Dominators/2006-10-02-BreakCritEdges.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
560 B
LLVM
Raw Normal View History

; RUN: opt < %s -passes='require<domtree>,break-crit-edges,print<domtree>' -disable-output 2>&1| FileCheck %s
2006-10-03 15:00:13 +08:00
; PR932
; CHECK: [3] %brtrue {{{[0-9]+}},{{[0-9]+}}}
2012-04-24 18:45:44 +08:00
2008-02-14 14:56:27 +08:00
declare void @use1(i32)
2006-10-03 15:00:13 +08:00
2008-02-14 14:56:27 +08:00
define void @f(i32 %i, i1 %c) {
2006-10-03 15:00:13 +08:00
entry:
2008-02-14 14:56:27 +08:00
%A = icmp eq i32 %i, 0 ; <i1> [#uses=1]
br i1 %A, label %brtrue, label %brfalse
2006-10-03 15:00:13 +08:00
brtrue: ; preds = %brtrue, %entry
2008-02-14 14:56:27 +08:00
%B = phi i1 [ true, %brtrue ], [ false, %entry ] ; <i1> [#uses=1]
call void @use1( i32 %i )
br i1 %B, label %brtrue, label %brfalse
2006-10-03 15:00:13 +08:00
brfalse: ; preds = %brtrue, %entry
2008-02-14 14:56:27 +08:00
call void @use1( i32 %i )
2006-10-03 15:00:13 +08:00
ret void
}