Fix spelling and grammar in a comment.
[oota-llvm.git] / test / Transforms / Reassociate / mulfactor2.ll
1 ; This should turn into one multiply and one add.
2
3 ; RUN: llvm-as < %s | \
4 ; RUN:   opt -instcombine -reassociate -instcombine | llvm-dis > %t 
5 ; RUN: grep mul %t | count 1
6 ; RUN: grep add %t | count 1
7
8 define i32 @main(i32 %t) {
9         %tmp.3 = mul i32 %t, 12         ; <i32> [#uses=1]
10         %tmp.4 = add i32 %tmp.3, 5              ; <i32> [#uses=1]
11         %tmp.6 = mul i32 %t, 6          ; <i32> [#uses=1]
12         %tmp.8 = mul i32 %tmp.4, 3              ; <i32> [#uses=1]
13         %tmp.9 = add i32 %tmp.8, %tmp.6         ; <i32> [#uses=1]
14         ret i32 %tmp.9
15 }
16