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
16 lines
431 B
LLVM
16 lines
431 B
LLVM
; RUN: opt < %s -tailduplicate -disable-output
|
|
|
|
define void @ab() {
|
|
entry:
|
|
br label %loopentry.5
|
|
loopentry.5: ; preds = %no_exit.5, %entry
|
|
%poscnt.1 = phi i64 [ 0, %entry ], [ %tmp.289, %no_exit.5 ] ; <i64> [#uses=1]
|
|
%tmp.289 = ashr i64 %poscnt.1, 1 ; <i64> [#uses=1]
|
|
br i1 false, label %no_exit.5, label %loopexit.5
|
|
no_exit.5: ; preds = %loopentry.5
|
|
br label %loopentry.5
|
|
loopexit.5: ; preds = %loopentry.5
|
|
ret void
|
|
}
|
|
|