Merging r259798, r259835:
[oota-llvm.git] / test / Transforms / Reassociate / shifttest.ll
index 18c6e4e3205734df7f1e0c12c36739cedb9226fe..d9a5336fbfb493704424c1a73a1e8578fed2e20e 100644 (file)
@@ -1,10 +1,12 @@
 ; With shl->mul reassociation, we can see that this is (shl A, 9) * A
 ;
-; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -instcombine | llvm-dis | grep 'shl .*, 9'
+; RUN: opt < %s -reassociate -instcombine -S |\
+; RUN:    grep "shl .*, 9"
 
-int %test(int %A, int %B) {
-       %X = shl int %A, ubyte 5
-       %Y = shl int %A, ubyte 4
-       %Z = mul int %Y, %X
-       ret int %Z
+define i32 @test(i32 %A, i32 %B) {
+       %X = shl i32 %A, 5              ; <i32> [#uses=1]
+       %Y = shl i32 %A, 4              ; <i32> [#uses=1]
+       %Z = mul i32 %Y, %X             ; <i32> [#uses=1]
+       ret i32 %Z
 }
+