move PR6576 here.

llvm-svn: 98194
This commit is contained in:
Chris Lattner 2010-03-10 21:42:42 +00:00
parent 0c48de0d62
commit 1f6689a8ba
1 changed files with 24 additions and 0 deletions

View File

@ -1819,3 +1819,27 @@ int test2(int mainType, int subType) {
} }
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//
The following test case (from PR6576):
define i32 @mul(i32 %a, i32 %b) nounwind readnone {
entry:
%cond1 = icmp eq i32 %b, 0 ; <i1> [#uses=1]
br i1 %cond1, label %exit, label %bb.nph
bb.nph: ; preds = %entry
%tmp = mul i32 %b, %a ; <i32> [#uses=1]
ret i32 %tmp
exit: ; preds = %entry
ret i32 0
}
could be reduced to:
define i32 @mul(i32 %a, i32 %b) nounwind readnone {
entry:
%tmp = mul i32 %b, %a
ret i32 %tmp
}
//===---------------------------------------------------------------------===//