Check for extractelement with a variable operand for the element number.
[oota-llvm.git] / test / Transforms / Reassociate / shifttest.ll
index 6a65aafb186c3bbfc1d5e0f29105358d767db10d..8b2cbc98c47a4a5468908ec9340a567c5be93a35 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 .*, ubyte 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
 }
+