Check for extractelement with a variable operand for the element number.
[oota-llvm.git] / test / Transforms / Reassociate / shift-factor.ll
index b0499f5cb250f29e4f6698dcd867f260b158e305..73af5e5304ee02b81d2931dfc6941b89f8649a84 100644 (file)
@@ -1,11 +1,12 @@
 ; There should be exactly one shift and one add left.
-; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | grep shl | wc -l | grep 1 &&
-; RUN: llvm-as < %s | opt -reassociate -instcombine | llvm-dis | grep add | wc -l | grep 1
+; RUN: opt < %s -reassociate -instcombine -S > %t
+; RUN: grep shl %t | count 1
+; RUN: grep add %t | count 1
 
-int %test(int %X, int %Y) {
-        %tmp.2 = shl int %X, ubyte 1            ; <int> [#uses=1]
-        %tmp.6 = shl int %Y, ubyte 1            ; <int> [#uses=1]
-        %tmp.4 = add int %tmp.6, %tmp.2         ; <int> [#uses=1]
-        ret int %tmp.4
+define i32 @test(i32 %X, i32 %Y) {
+       %tmp.2 = shl i32 %X, 1          ; <i32> [#uses=1]
+       %tmp.6 = shl i32 %Y, 1          ; <i32> [#uses=1]
+       %tmp.4 = add i32 %tmp.6, %tmp.2         ; <i32> [#uses=1]
+       ret i32 %tmp.4
 }