Improve the grep commands for this test to be tolerant of ABI
[oota-llvm.git] / test / CodeGen / X86 / lea.ll
index 8c231b11026c3903d363762102441e9713d4fa45..30a477ad120cc906187c3b9a1352326277671ef5 100644 (file)
@@ -1,12 +1,9 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep lea
+; RUN: llvm-as < %s | llc -march=x86
+; RUN: llvm-as < %s | llc -march=x86 | not grep orl
 
-; XFAIL: *
-
-%G = weak global int 0
-int %test1(int* %P, int %X) {
-       %tmp.1 = getelementptr int* %P, int %X
-       %tmp.2 = load int* %tmp.1
-        store int %tmp.2, int* %G
-       %tmp.3 = sub int %tmp.2, 9
-       ret int %tmp.3
+define i32 @test(i32 %x) {
+        %tmp1 = shl i32 %x, 3           ; <i32> [#uses=1]
+        %tmp2 = add i32 %tmp1, 7                ; <i32> [#uses=1]
+        ret i32 %tmp2
 }
+