repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
Transforms
/
IndVarSimplify
/
2009-04-27-Floating.ll
blob
9fd2d2f04f7253effc367e3ff223048eb9f59540
1
; RUN: opt < %s -indvars -S | grep icmp | grep next
2
; PR4086
3
declare void @foo()
4
5
define void @test() {
6
entry:
7
br label %loop_body
8
9
loop_body:
10
%i = phi float [ %nexti, %loop_body ], [ 0.0, %entry ]
11
tail call void @foo()
12
%nexti = fadd float %i, 1.0
13
%less = fcmp olt float %nexti, 2.0
14
br i1 %less, label %loop_body, label %done
15
16
done:
17
ret void
18
}