[llvm-commits] CVS: llvm/test/Regression/Assembler/2002-04-29-NameBinding.llx ConstantExprFoldCast.llx
Chris Lattner
lattner at cs.uiuc.edu
Sat Jun 28 18:33:26 PDT 2003
Changes in directory llvm/test/Regression/Assembler:
2002-04-29-NameBinding.llx updated: 1.2 -> 1.3
ConstantExprFoldCast.llx updated: 1.2 -> 1.3
---
Log message:
Remove usage of grep-not script
---
Diffs of the changes:
Index: llvm/test/Regression/Assembler/2002-04-29-NameBinding.llx
diff -u llvm/test/Regression/Assembler/2002-04-29-NameBinding.llx:1.2 llvm/test/Regression/Assembler/2002-04-29-NameBinding.llx:1.3
--- llvm/test/Regression/Assembler/2002-04-29-NameBinding.llx:1.2 Sat Jun 28 18:23:13 2003
+++ llvm/test/Regression/Assembler/2002-04-29-NameBinding.llx Sat Jun 28 18:32:03 2003
@@ -4,7 +4,7 @@
; Check by running globaldce, which will remove the constant if there are
; no references to it!
;
-; RUN: as < %s | opt -globaldce | dis | grep-not constant
+; RUN: as < %s | opt -globaldce | dis | not grep constant
;
%v1 = internal constant int 5
Index: llvm/test/Regression/Assembler/ConstantExprFoldCast.llx
diff -u llvm/test/Regression/Assembler/ConstantExprFoldCast.llx:1.2 llvm/test/Regression/Assembler/ConstantExprFoldCast.llx:1.3
--- llvm/test/Regression/Assembler/ConstantExprFoldCast.llx:1.2 Sat Jun 28 18:23:13 2003
+++ llvm/test/Regression/Assembler/ConstantExprFoldCast.llx Sat Jun 28 18:32:03 2003
@@ -1,6 +1,6 @@
; This test checks to make sure that constant exprs fold in some simple situations
-; RUN: as < %s | dis | grep-not cast
+; RUN: as < %s | dis | not grep cast
%A = global int* cast (sbyte* null to int*) ; Cast null -> fold
%B = global int** cast (int** %A to int**) ; Cast to same type -> fold
More information about the llvm-commits
mailing list