new testcase
[oota-llvm.git] / test / Transforms / Reassociate / mulfactor2.ll
1 ; This should turn into one multiply and one add.
2
3 ; RUN: llvm-as < mulfactor2.ll | opt -instcombine -reassociate -instcombine | llvm-dis | grep mul | wc -l | grep 1 &&
4 ; RUN: llvm-as < mulfactor2.ll | opt -instcombine -reassociate -instcombine | llvm-dis | grep add | wc -l | grep 1
5 int %main(int %t) {
6         %tmp.3 = mul int %t, 12         ; <int> [#uses=1]
7         %tmp.4 = add int %tmp.3, 5              ; <int> [#uses=1]
8         %tmp.6 = mul int %t, 6          ; <int> [#uses=1]
9         %tmp.8 = mul int %tmp.4, 3              ; <int> [#uses=1]
10         %tmp.9 = add int %tmp.8, %tmp.6         ; <int> [#uses=1]
11         ret int %tmp.9
12 }
13