llvm-6502/test/Transforms/PredicateSimplifier/2006-11-04-ReplacingZeros.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

26 lines
822 B
LLVM

; RUN: opt < %s -predsimplify -disable-output
define i32 @test_wp_B_slice(i32 %select_method) {
entry:
br label %bb309
cond_true114: ; preds = %bb309
%tmp130 = icmp slt i32 0, 128 ; <i1> [#uses=1]
%min = select i1 %tmp130, i32 0, i32 127 ; <i32> [#uses=2]
%tmp143 = load i32* null ; <i32> [#uses=0]
br i1 false, label %bb303, label %bb314
cond_true166: ; preds = %bb303
ret i32 0
cond_false200: ; preds = %bb303
%tmp205 = sdiv i32 %min, 2 ; <i32> [#uses=1]
%iftmp.380.0.p = select i1 false, i32 0, i32 %tmp205 ; <i32> [#uses=0]
ret i32 0
bb303: ; preds = %cond_true114
%tmp165 = icmp eq i32 %min, 0 ; <i1> [#uses=1]
br i1 %tmp165, label %cond_true166, label %cond_false200
bb309: ; preds = %entry
br i1 false, label %cond_true114, label %bb314
bb314: ; preds = %bb309, %cond_true114
ret i32 0
}