Enable all Hexagon tests.
[oota-llvm.git] / test / CodeGen / X86 / imul-lea.ll
index 6f2e3a986e7e4aa02eb4e2ad1ce07ba5ca8caa7c..4e8e2af0f2fec9c1922d570c0c8751a9ff102fc8 100644 (file)
@@ -1,8 +1,10 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep lea
+; RUN: llc < %s -march=x86 | grep lea
 
-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( )          ; <i32> [#uses=1]
+        %tmp.1 = mul i32 %tmp.0, 9              ; <i32> [#uses=1]
+        ret i32 %tmp.1
 }
+