[llvm-commits] CVS: llvm/test/Regression/Transforms/BasicAA/featuretest.ll gcsetest.ll licmtest.ll
Chris Lattner
lattner at cs.uiuc.edu
Sat Jun 28 18:24:37 PDT 2003
Changes in directory llvm/test/Regression/Transforms/BasicAA:
featuretest.ll updated: 1.7 -> 1.8
gcsetest.ll updated: 1.3 -> 1.4
licmtest.ll updated: 1.6 -> 1.7
---
Log message:
Remove explicit control flow through the use of the 'not' script
---
Diffs of the changes:
Index: llvm/test/Regression/Transforms/BasicAA/featuretest.ll
diff -u llvm/test/Regression/Transforms/BasicAA/featuretest.ll:1.7 llvm/test/Regression/Transforms/BasicAA/featuretest.ll:1.8
--- llvm/test/Regression/Transforms/BasicAA/featuretest.ll:1.7 Tue Jun 17 10:16:35 2003
+++ llvm/test/Regression/Transforms/BasicAA/featuretest.ll Sat Jun 28 18:23:16 2003
@@ -1,10 +1,7 @@
; This testcase tests for various features the basicaa test should be able to
; determine, as noted in the comments.
-; RUN: if as < %s | opt -basicaa -load-vn -gcse -instcombine -dce | dis | grep REMOVE
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: as < %s | opt -basicaa -load-vn -gcse -instcombine -dce | dis | not grep REMOVE
%Global = external global { int }
Index: llvm/test/Regression/Transforms/BasicAA/gcsetest.ll
diff -u llvm/test/Regression/Transforms/BasicAA/gcsetest.ll:1.3 llvm/test/Regression/Transforms/BasicAA/gcsetest.ll:1.4
--- llvm/test/Regression/Transforms/BasicAA/gcsetest.ll:1.3 Sat Sep 7 17:50:41 2002
+++ llvm/test/Regression/Transforms/BasicAA/gcsetest.ll Sat Jun 28 18:23:16 2003
@@ -2,10 +2,7 @@
; disambiguating some obvious cases. All loads should be removable in
; this testcase.
-; RUN: if as < %s | opt -basicaa -load-vn -gcse -instcombine -dce | dis | grep load
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: as < %s | opt -basicaa -load-vn -gcse -instcombine -dce | dis | not grep load
%A = global int 7
%B = global int 8
Index: llvm/test/Regression/Transforms/BasicAA/licmtest.ll
diff -u llvm/test/Regression/Transforms/BasicAA/licmtest.ll:1.6 llvm/test/Regression/Transforms/BasicAA/licmtest.ll:1.7
--- llvm/test/Regression/Transforms/BasicAA/licmtest.ll:1.6 Mon Mar 3 17:27:15 2003
+++ llvm/test/Regression/Transforms/BasicAA/licmtest.ll Sat Jun 28 18:23:16 2003
@@ -3,10 +3,7 @@
; two pointers, then the load should be hoisted, and the store sunk. Thus
; the loop becomes empty and can be deleted by ADCE.
-; RUN: if as < %s | opt -basicaa -licm --adce | dis | grep Loop
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: as < %s | opt -basicaa -licm --adce | dis | not grep Loop
%A = global int 7
%B = global int 8
More information about the llvm-commits
mailing list