1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/Transforms/InstCombine/2007-12-18-AddSelCmpSub.ll
Dan Gohman 8d84372836 Change these tests to feed the assembly files to opt directly, instead
of using llvm-as, now that opt supports this.

llvm-svn: 81226
2009-09-08 16:50:01 +00:00

30 lines
1.1 KiB
LLVM

; RUN: opt %s -instcombine | llvm-dis | 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
}