llvm-6502/test/Transforms/IndVarSimplify/2008-06-15-SCEVExpanderBug.ll
Dan Gohman f2f6ce65b7 Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
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
2009-09-11 18:01:28 +00:00

18 lines
610 B
LLVM

; RUN: opt < %s -indvars -disable-output
; PR2434
define fastcc void @regcppop() nounwind {
entry:
%tmp61 = add i32 0, -5 ; <i32> [#uses=1]
br label %bb
bb: ; preds = %bb, %entry
%PL_savestack_ix.tmp.0 = phi i32 [ %tmp61, %entry ], [ %tmp127, %bb ] ; <i32> [#uses=2]
%indvar10 = phi i32 [ 0, %entry ], [ %indvar.next11, %bb ] ; <i32> [#uses=2]
%tmp13 = mul i32 %indvar10, -4 ; <i32> [#uses=0]
%tmp111 = add i32 %PL_savestack_ix.tmp.0, -3 ; <i32> [#uses=0]
%tmp127 = add i32 %PL_savestack_ix.tmp.0, -4 ; <i32> [#uses=1]
%indvar.next11 = add i32 %indvar10, 1 ; <i32> [#uses=1]
br label %bb
}