llvm-6502/test/Transforms/InstCombine/2007-12-18-AddSelCmpSub.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

30 lines
1.1 KiB
LLVM

; RUN: opt < %s -instcombine -S | grep {add} | count 1
define i32 @foo(i32 %a) {
entry:
%tmp15 = sub i32 99, %a ; <i32> [#uses=2]
%tmp16 = icmp slt i32 %tmp15, 0 ; <i1> [#uses=1]
%smax = select i1 %tmp16, i32 0, i32 %tmp15 ; <i32> [#uses=1]
%tmp12 = add i32 %smax, %a ; <i32> [#uses=1]
%tmp13 = add i32 %tmp12, 1 ; <i32> [#uses=1]
ret i32 %tmp13
}
define i32 @bar(i32 %a) {
entry:
%tmp15 = sub i32 99, %a ; <i32> [#uses=2]
%tmp16 = icmp slt i32 %tmp15, 0 ; <i1> [#uses=1]
%smax = select i1 %tmp16, i32 0, i32 %tmp15 ; <i32> [#uses=1]
%tmp12 = add i32 %smax, %a ; <i32> [#uses=1]
ret i32 %tmp12
}
define i32 @fun(i32 %a) {
entry:
%tmp15 = sub i32 99, %a ; <i32> [#uses=1]
%tmp16 = icmp slt i32 %a, 0 ; <i1> [#uses=1]
%smax = select i1 %tmp16, i32 0, i32 %tmp15 ; <i32> [#uses=1]
%tmp12 = add i32 %smax, %a ; <i32> [#uses=1]
ret i32 %tmp12
}