repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git]
/
test
/
Transforms
/
SSI
/
2009-08-17-CritEdge.ll
blob
61bd2dc693f4f52a19e223a136b07136e72e7290
1
; RUN: opt < %s -ssi-everything -disable-output
2
3
define void @test(i32 %x) {
4
entry:
5
br label %label1
6
label1:
7
%A = phi i32 [ 0, %entry ], [ %A.1, %label2 ]
8
%B = icmp slt i32 %A, %x
9
br i1 %B, label %label2, label %label2
10
label2:
11
%A.1 = add i32 %A, 1
12
br label %label1
13
label3: ; No predecessors!
14
ret void
15
}