In an XFAIL line, treat "XFAIL: foo*bar" as a regular expression to be matched
[oota-llvm.git] / test / Transforms / Reassociate / 2002-05-15-AgressiveSubMove.ll
index 678080dd9229aa470d237f54e51a6cc5dc4fe38d..5465418d00ded7196e7a78dcffec331bde91cf66 100644 (file)
@@ -1,11 +1,9 @@
-; RUN: if as < %s | opt -reassociate -instcombine | dis | grep add
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: llvm-as < %s | opt -reassociate -instcombine -constprop -dce | llvm-dis | not grep add
 
-int "test"(int %A) {
-       %X = add int %A, 1
-       %Y = add int %A, 1
-       %r = sub int %X, %Y
-       ret int %r               ; Should be equal to 0!
+define i32 @test(i32 %A) {
+       %X = add i32 %A, 1              ; <i32> [#uses=1]
+       %Y = add i32 %A, 1              ; <i32> [#uses=1]
+       %r = sub i32 %X, %Y             ; <i32> [#uses=1]
+       ret i32 %r
 }
+