The commit rL308422 introduces a restriction for folding unconditional branches. Specifically if empty block with unconditional branch leads to header of the loop then elimination of this basic block is prohibited. However it seems this condition is redundantly strict. If elimination of this basic block does not introduce more back edges then we can eliminate this block. The patch implements this relax of restriction. The test profile/Linux/counter_promo_nest.c in compiler-rt project is updated to meet this change. Reviewers: efriedma, mcrosier, pacxx, hsung, davidxl Reviewed By: pacxx Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D42691 llvm-svn: 324572
19 lines
423 B
LLVM
19 lines
423 B
LLVM
; RUN: opt < %s -simplifycfg -S | FileCheck %s
|
|
|
|
; Check that we can get rid of empty block leading to header
|
|
; if it does not introduce new edge.
|
|
define i32 @test(i32 %c) {
|
|
entry:
|
|
br label %header
|
|
header:
|
|
%i = phi i32 [0, %entry], [%i.1, %backedge]
|
|
%i.1 = add i32 %i, 1
|
|
%cmp = icmp slt i32 %i.1, %c
|
|
br i1 %cmp, label %backedge, label %exit
|
|
; CHECK-NOT: backedge:
|
|
backedge:
|
|
br label %header
|
|
exit:
|
|
ret i32 %i
|
|
}
|