mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 17:32:36 +00:00
move PR6576 here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98194 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
97d7b1007a
commit
6663670359
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user