[X86][AVX2] Vectorized i16 shift operators
[oota-llvm.git] / test / CodeGen / X86 / imul-lea.ll
index 6f2e3a986e7e4aa02eb4e2ad1ce07ba5ca8caa7c..d55ece7996edfdd8228a1847c62b88de1742c63c 100644 (file)
@@ -1,8 +1,12 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep lea
+; RUN: llc < %s -march=x86 | FileCheck %s
 
-declare int %foo()
-int %test() {
-       %tmp.0 = tail call int %foo( )          ; <int> [#uses=1]
-       %tmp.1 = mul int %tmp.0, 9              ; <int> [#uses=1]
-       ret int %tmp.1
+declare i32 @foo()
+
+define i32 @test() {
+  %tmp.0 = tail call i32 @foo( )
+  %tmp.1 = mul i32 %tmp.0, 9
+; CHECK-NOT: mul
+; CHECK: lea
+  ret i32 %tmp.1
 }
+