mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26525 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e5022fe4cd
commit
9e14cd355f
14
test/Transforms/Reassociate/mulfactor.ll
Normal file
14
test/Transforms/Reassociate/mulfactor.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | grep mul | wc -l | grep 2
|
||||
|
||||
; This should have exactly 2 multiplies when we're done.
|
||||
|
||||
int %f(int %a, int %b) {
|
||||
%tmp.2 = mul int %a, %a
|
||||
%tmp.5 = shl int %a, ubyte 1
|
||||
%tmp.6 = mul int %tmp.5, %b
|
||||
%tmp.10 = mul int %b, %b
|
||||
%tmp.7 = add int %tmp.6, %tmp.2
|
||||
%tmp.11 = add int %tmp.7, %tmp.10
|
||||
ret int %tmp.11
|
||||
}
|
||||
|
13
test/Transforms/Reassociate/mulfactor2.ll
Normal file
13
test/Transforms/Reassociate/mulfactor2.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; This should turn into one multiply and one add.
|
||||
|
||||
; RUN: llvm-as < mulfactor2.ll | opt -instcombine -reassociate -instcombine | llvm-dis | grep mul | wc -l | grep 1 &&
|
||||
; RUN: llvm-as < mulfactor2.ll | opt -instcombine -reassociate -instcombine | llvm-dis | grep add | wc -l | grep 1
|
||||
int %main(int %t) {
|
||||
%tmp.3 = mul int %t, 12 ; <int> [#uses=1]
|
||||
%tmp.4 = add int %tmp.3, 5 ; <int> [#uses=1]
|
||||
%tmp.6 = mul int %t, 6 ; <int> [#uses=1]
|
||||
%tmp.8 = mul int %tmp.4, 3 ; <int> [#uses=1]
|
||||
%tmp.9 = add int %tmp.8, %tmp.6 ; <int> [#uses=1]
|
||||
ret int %tmp.9
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user