Changes in directory llvm/test/Regression/Transforms/PredicateSimplifier:

2006-10-22-IntOr.ll updated: 1.2 -> 1.3
---
Log message:

Emitting raw bytecode is awfully rude. Add -disable-output.
Clarify the test.


---
Diffs of the changes:  (+17 -7)

 2006-10-22-IntOr.ll |   24 +++++++++++++++++-------
 1 files changed, 17 insertions(+), 7 deletions(-)


Index: llvm/test/Regression/Transforms/PredicateSimplifier/2006-10-22-IntOr.ll
diff -u 
llvm/test/Regression/Transforms/PredicateSimplifier/2006-10-22-IntOr.ll:1.2 
llvm/test/Regression/Transforms/PredicateSimplifier/2006-10-22-IntOr.ll:1.3
--- llvm/test/Regression/Transforms/PredicateSimplifier/2006-10-22-IntOr.ll:1.2 
Wed Oct 25 19:51:58 2006
+++ llvm/test/Regression/Transforms/PredicateSimplifier/2006-10-22-IntOr.ll     
Fri Oct 27 21:34:41 2006
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s | opt -predsimplify -instcombine -simplifycfg &&
-; RUN: llvm-as < %s | opt -predsimplify -instcombine -simplifycfg | llvm-dis | 
grep -v declare | grep -c fail | grep 1 &&
-; RUN: llvm-as < %s | opt -predsimplify -instcombine -simplifycfg | llvm-dis | 
grep -v declare | grep -c pass | grep 1
+; RUN: llvm-as < %s | opt -predsimplify -instcombine -simplifycfg 
-disable-output &&
+; RUN: llvm-as < %s | opt -predsimplify -instcombine -simplifycfg | llvm-dis | 
grep -v declare | not grep fail &&
+; RUN: llvm-as < %s | opt -predsimplify -instcombine -simplifycfg | llvm-dis | 
grep -v declare | grep -c pass | grep 3
 
 int %test1(int %x, int %y) {
 entry:
@@ -10,12 +10,16 @@
 
 cond_true:             ; preds = %entry
        %tmp4 = seteq int %x, 0         ; <bool> [#uses=1]
-       br bool %tmp4, label %cond_true5, label %return
+       br bool %tmp4, label %cond_true5, label %cond_false
 
 cond_true5:            ; preds = %cond_true
-       %tmp6 = call int %fail( )               ; <int> [#uses=0]
+       %tmp6 = call int %pass( )               ; <int> [#uses=1]
        ret int %tmp6
 
+cond_false:
+       %tmp8 = call int %fail ( )              ; <int> [#uses=1]
+       ret int %tmp8
+
 return:                ; preds = %cond_next7
        ret int 0
 }
@@ -28,15 +32,21 @@
 
 cond_true:             ; preds = %entry
        %tmp4 = seteq int %x, 0         ; <bool> [#uses=1]
-       br bool %tmp4, label %cond_true5, label %return
+       br bool %tmp4, label %cond_true5, label %cond_false
 
 cond_true5:            ; preds = %cond_true
-       %tmp6 = call int %pass( )               ; <int> [#uses=0]
+       %tmp6 = call int %pass1( )              ; <int> [#uses=1]
        ret int %tmp6
 
+cond_false:
+       %tmp8 = call int %pass2( )              ; <int> [#uses=1]
+       ret int %tmp8
+
 return:                ; preds = %cond_next7
        ret int 0
 }
 
 declare int %fail()
 declare int %pass()
+declare int %pass1()
+declare int %pass2()



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to