Eliminate more redundant llvm-as calls.
[oota-llvm.git] / test / Transforms / Reassociate / basictest.ll
index 6372d988c334e0f78fb0c7f294fb913088caa104..eca2d6310d34ca2e42193e8573012351dab003b1 100644 (file)
@@ -1,9 +1,10 @@
 ; With reassociation, constant folding can eliminate the 12 and -12 constants.
 ;
-; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep add
+; RUN: opt < %s -reassociate -constprop -instcombine -die -S | not grep add
 
-int %test(int %arg) {
-       %tmp1 = sub int -12, %arg
-       %tmp2 = add int %tmp1, 12
-       ret int %tmp2
+define i32 @test(i32 %arg) {
+       %tmp1 = sub i32 -12, %arg               ; <i32> [#uses=1]
+       %tmp2 = add i32 %tmp1, 12               ; <i32> [#uses=1]
+       ret i32 %tmp2
 }
+