mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
205b641954
input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
28 lines
821 B
LLVM
28 lines
821 B
LLVM
; RUN: opt < %s -indvars -disable-output
|
|
|
|
define void @.outPlank_21() {
|
|
entry:
|
|
br i1 false, label %loopexit.0, label %no_exit.0
|
|
|
|
no_exit.0: ; preds = %entry
|
|
ret void
|
|
|
|
loopexit.0: ; preds = %entry
|
|
br i1 false, label %no_exit.1, label %loopexit.1
|
|
|
|
no_exit.1: ; preds = %loopexit.2, %loopexit.0
|
|
%i.0.0 = phi i32 [ %inc, %loopexit.2 ], [ 0, %loopexit.0 ] ; <i32> [#uses=1]
|
|
br i1 false, label %loopexit.2, label %no_exit.2
|
|
|
|
no_exit.2: ; preds = %no_exit.1
|
|
ret void
|
|
|
|
loopexit.2: ; preds = %no_exit.1
|
|
%inc = add i32 %i.0.0, 1 ; <i32> [#uses=1]
|
|
br i1 false, label %no_exit.1, label %loopexit.1
|
|
|
|
loopexit.1: ; preds = %loopexit.2, %loopexit.0
|
|
ret void
|
|
}
|
|
|