Fix spelling and grammar in a comment.
[oota-llvm.git] / test / Transforms / Reassociate / mul-factor3.ll
index 1272ff62dd8d01b13e6fbc882ba3bedc2326742b..e45e431df54510ece6252f102c6575ed2c06ee25 100644 (file)
@@ -1,16 +1,16 @@
 ; This should be one add and two multiplies.
 
-; RUN: llvm-upgrade < %s | llvm-as | \
+; RUN: llvm-as < %s | \
 ; RUN:   opt -reassociate -instcombine | llvm-dis > %t 
-; RUN: grep mul %t | wc -l | grep 2
-; RUN: grep add %t | wc -l | grep 1
+; RUN: grep mul %t | count 2
+; RUN: grep add %t | count 1
 
-int %test(int %A, int %B, int %C) {
-       %aa = mul int %A, %A
-       %aab = mul int %aa, %B
-
-       %ac = mul int %A, %C
-       %aac = mul int %ac, %A
-       %r = add int %aab, %aac
-       ret int %r
+define i32 @test(i32 %A, i32 %B, i32 %C) {
+       %aa = mul i32 %A, %A            ; <i32> [#uses=1]
+       %aab = mul i32 %aa, %B          ; <i32> [#uses=1]
+       %ac = mul i32 %A, %C            ; <i32> [#uses=1]
+       %aac = mul i32 %ac, %A          ; <i32> [#uses=1]
+       %r = add i32 %aab, %aac         ; <i32> [#uses=1]
+       ret i32 %r
 }
+