Files
archived-llvm/test/Transforms/SimplifyCFG/UncondBranchToHeader.ll
Serguei Katkov 4c64dfea37 [SimplifyCFG] Re-apply Relax restriction for folding unconditional branches
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


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@324572 91177308-0d34-0410-b5e6-96231b3b80d8
2018-02-08 07:16:29 +00:00

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
}