Enable all Hexagon tests.
[oota-llvm.git] / test / CodeGen / X86 / overlap-shift.ll
index 48f91e0cba9cacaac9b2390dec81b75c67a922da..d185af16b90bd732b5af3959b1d03cf42e51aea3 100644 (file)
@@ -6,12 +6,14 @@
 
 ; Check that the shift gets turned into an LEA.
 
-; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | not grep 'mov E.X, E.X'
+; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | \
+; RUN:   not grep {mov E.X, E.X}
 
-%G = external global int
+@G = external global i32                ; <i32*> [#uses=1]
 
-int %test1(int %X) {
-       %Z = shl int %X, ubyte 2
-       volatile store int %Z, int* %G
-       ret int %X
+define i32 @test1(i32 %X) {
+        %Z = shl i32 %X, 2              ; <i32> [#uses=1]
+        store volatile i32 %Z, i32* @G
+        ret i32 %X
 }
+