llvm-6502/test/Transforms/PredicateSimplifier/predsimplify.reg1.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

21 lines
656 B
LLVM

; RUN: opt < %s -predsimplify -verify
define void @dgefa() {
entry:
br label %cond_true96
cond_true: ; preds = %cond_true96
%tmp19 = icmp eq i32 %tmp10, %k.0 ; <i1> [#uses=1]
br i1 %tmp19, label %cond_next, label %cond_true20
cond_true20: ; preds = %cond_true
br label %cond_next
cond_next: ; preds = %cond_true20, %cond_true
%tmp84 = icmp sgt i32 %tmp3, 1999 ; <i1> [#uses=0]
ret void
cond_true96: ; preds = %cond_true96, %entry
%k.0 = phi i32 [ 0, %entry ], [ 0, %cond_true96 ] ; <i32> [#uses=3]
%tmp3 = add i32 %k.0, 1 ; <i32> [#uses=1]
%tmp10 = add i32 0, %k.0 ; <i32> [#uses=1]
br i1 false, label %cond_true96, label %cond_true
}