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
24 lines
706 B
LLVM
24 lines
706 B
LLVM
; RUN: opt < %s -loop-extract -disable-output
|
|
|
|
define void @maketree() {
|
|
entry:
|
|
br i1 false, label %no_exit.1, label %loopexit.0
|
|
|
|
no_exit.1: ; preds = %endif, %expandbox.entry, %entry
|
|
br i1 false, label %endif, label %expandbox.entry
|
|
|
|
expandbox.entry: ; preds = %no_exit.1
|
|
br i1 false, label %loopexit.1, label %no_exit.1
|
|
|
|
endif: ; preds = %no_exit.1
|
|
br i1 false, label %loopexit.1, label %no_exit.1
|
|
|
|
loopexit.1: ; preds = %endif, %expandbox.entry
|
|
%ic.i.0.0.4 = phi i32 [ 0, %expandbox.entry ], [ 0, %endif ] ; <i32> [#uses=0]
|
|
ret void
|
|
|
|
loopexit.0: ; preds = %entry
|
|
ret void
|
|
}
|
|
|