[llvm-commits] CVS: llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll buglobals.ll constantize.ll gcsetest.ll incompletenode.ll mustalias.ll

Misha Brukman brukman at cs.uiuc.edu
Mon Sep 15 14:59:02 PDT 2003


Changes in directory llvm/test/Regression/Analysis/DSGraph:

2003-06-29-NodeCollapsing.ll updated: 1.1 -> 1.2
buglobals.ll updated: 1.1 -> 1.2
constantize.ll updated: 1.1 -> 1.2
gcsetest.ll updated: 1.5 -> 1.6
incompletenode.ll updated: 1.2 -> 1.3
mustalias.ll updated: 1.2 -> 1.3

---
Log message:

Renamed `as' => `llvm-as', `dis' => `llvm-dis'.


---
Diffs of the changes:

Index: llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll
diff -u llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll:1.1 llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll:1.2
--- llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll:1.1	Sun Jun 29 12:18:59 2003
+++ llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing.ll	Mon Sep 15 14:58:02 2003
@@ -1,4 +1,4 @@
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse | dis | not grep load
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse | llvm-dis | not grep load
 %T = type { int*, int* }
 
 int %main() {


Index: llvm/test/Regression/Analysis/DSGraph/buglobals.ll
diff -u llvm/test/Regression/Analysis/DSGraph/buglobals.ll:1.1 llvm/test/Regression/Analysis/DSGraph/buglobals.ll:1.2
--- llvm/test/Regression/Analysis/DSGraph/buglobals.ll:1.1	Sat Jun 28 16:54:24 2003
+++ llvm/test/Regression/Analysis/DSGraph/buglobals.ll	Mon Sep 15 14:58:02 2003
@@ -1,7 +1,7 @@
 ; This tests to make sure that G ends up in the globals graph of the BU pass.
 ; If it is not, then %G will get converted to a 'constant' from a 'global'
 ;
-; RUN: as < %s | opt -ds-opt -globaldce | dis | grep %G
+; RUN: llvm-as < %s | opt -ds-opt -globaldce | llvm-dis | grep %G
 
 
 %G = internal global int 0		; <int*> [#uses=2]


Index: llvm/test/Regression/Analysis/DSGraph/constantize.ll
diff -u llvm/test/Regression/Analysis/DSGraph/constantize.ll:1.1 llvm/test/Regression/Analysis/DSGraph/constantize.ll:1.2
--- llvm/test/Regression/Analysis/DSGraph/constantize.ll:1.1	Sat Jun 28 16:56:22 2003
+++ llvm/test/Regression/Analysis/DSGraph/constantize.ll	Mon Sep 15 14:58:02 2003
@@ -1,6 +1,6 @@
 ; Make sure that the ds-opt pass is constantizing globals
 ;
-; RUN: as < %s | opt -ds-opt | dis | grep %G | grep constant
+; RUN: llvm-as < %s | opt -ds-opt | llvm-dis | grep %G | grep constant
 
 
 %G = internal global int 0		; <int*> [#uses=2]


Index: llvm/test/Regression/Analysis/DSGraph/gcsetest.ll
diff -u llvm/test/Regression/Analysis/DSGraph/gcsetest.ll:1.5 llvm/test/Regression/Analysis/DSGraph/gcsetest.ll:1.6
--- llvm/test/Regression/Analysis/DSGraph/gcsetest.ll:1.5	Sat Jun 28 18:49:06 2003
+++ llvm/test/Regression/Analysis/DSGraph/gcsetest.ll	Mon Sep 15 14:58:02 2003
@@ -1,7 +1,7 @@
 ; Test that GCSE uses ds-aa to do alias analysis, which is capable of 
 ; disambiguating some cases.
 
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine -dce | dis | not grep ELIM
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine -dce | llvm-dis | not grep ELIM
 
 %intpair = type {int*, int*}
 implementation


Index: llvm/test/Regression/Analysis/DSGraph/incompletenode.ll
diff -u llvm/test/Regression/Analysis/DSGraph/incompletenode.ll:1.2 llvm/test/Regression/Analysis/DSGraph/incompletenode.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/incompletenode.ll:1.2	Sat Jun 28 20:09:07 2003
+++ llvm/test/Regression/Analysis/DSGraph/incompletenode.ll	Mon Sep 15 14:58:02 2003
@@ -1,7 +1,7 @@
 ; This test was failing because the globals X and Y are marked incomplete
 ; in the TD graph for %test
 
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine | dis | not grep seteq
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse -instcombine | llvm-dis | not grep seteq
 
 %X = internal global int 20
 %Y = internal global int* null


Index: llvm/test/Regression/Analysis/DSGraph/mustalias.ll
diff -u llvm/test/Regression/Analysis/DSGraph/mustalias.ll:1.2 llvm/test/Regression/Analysis/DSGraph/mustalias.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/mustalias.ll:1.2	Sat Jun 28 19:57:34 2003
+++ llvm/test/Regression/Analysis/DSGraph/mustalias.ll	Mon Sep 15 14:58:02 2003
@@ -1,6 +1,6 @@
 ; Test that ds-aa is returning must-alias information when it can.
 
-; RUN: as < %s | opt -no-aa -ds-aa -load-vn -gcse | dis | not grep load
+; RUN: llvm-as < %s | opt -no-aa -ds-aa -load-vn -gcse | llvm-dis | not grep load
 
 %X = internal global int 20
 





More information about the llvm-commits mailing list