test some more mul by constant removal

llvm-svn: 27366
This commit is contained in:
Andrew Lenharth 2006-04-03 03:16:09 +00:00
parent 04a8429572
commit 0288ba764a
1 changed files with 13 additions and 2 deletions

View File

@ -3,9 +3,20 @@
implementation ; Functions:
ulong %foo(ulong %x) {
ulong %foo1(ulong %x) {
entry:
%tmp.1 = mul ulong %x, 5 ; <ulong> [#uses=1]
%tmp.1 = mul ulong %x, 9 ; <ulong> [#uses=1]
ret ulong %tmp.1
}
ulong %foo3(ulong %x) {
entry:
%tmp.1 = mul ulong %x, 259
ret ulong %tmp.1
}
ulong %foo1n(ulong %x) {
entry:
%tmp.1 = mul ulong %x, 511
ret ulong %tmp.1
}