mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
If a loop iterates exactly once (has backedge count = 0) then don't
mess with it. We'd rather peel/unroll it than convert all of its stores into memsets. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -188,4 +188,22 @@ for.end: ; preds = %for.body, %entry
|
||||
; CHECK-NOT: store
|
||||
}
|
||||
|
||||
; This is a loop should not be transformed, it only executes one iteration.
|
||||
define void @test8(i64* %Ptr, i64 %Size) nounwind ssp {
|
||||
bb.nph: ; preds = %entry
|
||||
br label %for.body
|
||||
|
||||
for.body: ; preds = %bb.nph, %for.body
|
||||
%indvar = phi i64 [ 0, %bb.nph ], [ %indvar.next, %for.body ]
|
||||
%PI = getelementptr i64* %Ptr, i64 %indvar
|
||||
store i64 0, i64 *%PI
|
||||
%indvar.next = add i64 %indvar, 1
|
||||
%exitcond = icmp eq i64 %indvar.next, 1
|
||||
br i1 %exitcond, label %for.end, label %for.body
|
||||
|
||||
for.end: ; preds = %for.body, %entry
|
||||
ret void
|
||||
; CHECK: @test8
|
||||
; CHECK: store i64 0, i64* %PI
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user