Merging r259798, r259835:
[oota-llvm.git] / test / Transforms / Reassociate / 2002-05-15-MissedTree.ll
index 1d08a1054e26651d62f180e88023f9c254fbefd1..5f3c9209aedab7b6c5fc08deec8f07662fc43793 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: if as < %s | opt -reassociate -instcombine -constprop -die | dis | grep 5
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: opt < %s -reassociate -instcombine -S | FileCheck %s
 
-int "test"(int %A, int %B) {
-        %W = add int %B, -5
-        %Y = add int %A, 5
-        %Z = add int %W, %Y
-        ret int %Z
+define i32 @test1(i32 %A, i32 %B) {
+; CHECK-LABEL: test1
+; CHECK: %Z = add i32 %B, %A
+; CHECK: ret i32 %Z
+       %W = add i32 %B, -5
+       %Y = add i32 %A, 5
+       %Z = add i32 %W, %Y
+       ret i32 %Z
 }