mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
f2f6ce65b7
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|
|
|