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

2003-06-29-IncompleteTDPass.ll updated: 1.3 -> 1.4
2003-06-29-NodeCollapsing2.ll updated: 1.2 -> 1.3
2003-06-30-TopDownResolve.ll updated: 1.4 -> 1.5
2003-07-01-FieldCollapse.ll updated: 1.2 -> 1.3
2003-07-16-ConstantExprCollapse.ll updated: 1.3 -> 1.4
2003-11-02-NodeCollapsing.ll updated: 1.2 -> 1.3
2004-02-13-memcpy.ll updated: 1.5 -> 1.6
2005-03-22-IncompleteGlobal.ll updated: 1.3 -> 1.4
2006-04-25-ZeroArrayStructUse.ll updated: 1.2 -> 1.3
FunctionPointerTable-const.ll updated: 1.3 -> 1.4
GlobalsGraphFuncPtr.ll updated: 1.3 -> 1.4
HardBUCase.ll updated: 1.3 -> 1.4
PhysicalSubtyping.ll updated: 1.2 -> 1.3
SCCSimpleExample.ll updated: 1.2 -> 1.3
constant_globals.ll updated: 1.3 -> 1.4
strcpy.ll updated: 1.3 -> 1.4
---
Log message:

Update tests now that opt no longer reads .ll files


---
Diffs of the changes:  (+19 -19)

 2003-06-29-IncompleteTDPass.ll     |    2 +-
 2003-06-29-NodeCollapsing2.ll      |    2 +-
 2003-06-30-TopDownResolve.ll       |    2 +-
 2003-07-01-FieldCollapse.ll        |    2 +-
 2003-07-16-ConstantExprCollapse.ll |    2 +-
 2003-11-02-NodeCollapsing.ll       |    2 +-
 2004-02-13-memcpy.ll               |    4 ++--
 2005-03-22-IncompleteGlobal.ll     |    4 ++--
 2006-04-25-ZeroArrayStructUse.ll   |    2 +-
 FunctionPointerTable-const.ll      |    4 ++--
 GlobalsGraphFuncPtr.ll             |    2 +-
 HardBUCase.ll                      |    2 +-
 PhysicalSubtyping.ll               |    2 +-
 SCCSimpleExample.ll                |    2 +-
 constant_globals.ll                |    2 +-
 strcpy.ll                          |    2 +-
 16 files changed, 19 insertions(+), 19 deletions(-)


Index: llvm/test/Regression/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll
diff -u 
llvm/test/Regression/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll:1.3    
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2003-06-29-IncompleteTDPass.ll        
Sun Aug 27 17:47:14 2006
@@ -1,4 +1,4 @@
-; RUN: opt -analyze %s -datastructure-gc -dsgc-dspass=td 
-dsgc-check-flags=Ptr:HR
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-dspass=td 
-dsgc-check-flags=Ptr:HR
 
 
 


Index: llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing2.ll
diff -u llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing2.ll:1.2 
llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing2.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing2.ll:1.2     
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2003-06-29-NodeCollapsing2.ll Sun Aug 
27 17:47:14 2006
@@ -1,7 +1,7 @@
 ; This is the same testcase as 2003-06-29-NodeCollapsing2.ll, but it uses the 
 ; graph checker.
 ;
-; RUN: opt -analyze %s -datastructure-gc -dsgc-abort-if-any-collapsed
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
-dsgc-abort-if-any-collapsed
 ;
 %T = type { int}
 


Index: llvm/test/Regression/Analysis/DSGraph/2003-06-30-TopDownResolve.ll
diff -u llvm/test/Regression/Analysis/DSGraph/2003-06-30-TopDownResolve.ll:1.4 
llvm/test/Regression/Analysis/DSGraph/2003-06-30-TopDownResolve.ll:1.5
--- llvm/test/Regression/Analysis/DSGraph/2003-06-30-TopDownResolve.ll:1.4      
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2003-06-30-TopDownResolve.ll  Sun Aug 
27 17:47:14 2006
@@ -1,4 +1,4 @@
-; RUN: opt -analyze %s -datastructure-gc -dsgc-dspass=td -dsgc-check-flags=X:GM
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-dspass=td 
-dsgc-check-flags=X:GM
 
 %G = internal global int 5
 


Index: llvm/test/Regression/Analysis/DSGraph/2003-07-01-FieldCollapse.ll
diff -u llvm/test/Regression/Analysis/DSGraph/2003-07-01-FieldCollapse.ll:1.2 
llvm/test/Regression/Analysis/DSGraph/2003-07-01-FieldCollapse.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/2003-07-01-FieldCollapse.ll:1.2       
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2003-07-01-FieldCollapse.ll   Sun Aug 
27 17:47:14 2006
@@ -1,4 +1,4 @@
-; RUN: opt -analyze %s -datastructure-gc -dsgc-abort-if-any-collapsed
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
-dsgc-abort-if-any-collapsed
 
 %X = internal global { int, short, short } { int 1, short 2, short 3 }
 


Index: llvm/test/Regression/Analysis/DSGraph/2003-07-16-ConstantExprCollapse.ll
diff -u 
llvm/test/Regression/Analysis/DSGraph/2003-07-16-ConstantExprCollapse.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/2003-07-16-ConstantExprCollapse.ll:1.4
--- 
llvm/test/Regression/Analysis/DSGraph/2003-07-16-ConstantExprCollapse.ll:1.3    
    Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2003-07-16-ConstantExprCollapse.ll    
Sun Aug 27 17:47:14 2006
@@ -1,6 +1,6 @@
 ; This should cause the global node to collapse!!
 ; XFAIL: *
-; RUN: opt -analyze %s -datastructure-gc --dsgc-check-flags=test:GAU
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
--dsgc-check-flags=test:GAU
 
 %Tree = type { int, %Tree*, %Tree* }
 %T5 = external global %Tree


Index: llvm/test/Regression/Analysis/DSGraph/2003-11-02-NodeCollapsing.ll
diff -u llvm/test/Regression/Analysis/DSGraph/2003-11-02-NodeCollapsing.ll:1.2 
llvm/test/Regression/Analysis/DSGraph/2003-11-02-NodeCollapsing.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/2003-11-02-NodeCollapsing.ll:1.2      
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2003-11-02-NodeCollapsing.ll  Sun Aug 
27 17:47:14 2006
@@ -1,7 +1,7 @@
 ; This is the same testcase as 2003-06-29-NodeCollapsing2.ll, but it uses the 
 ; graph checker.
 ;
-; RUN: opt -analyze %s -datastructure-gc -dsgc-abort-if-any-collapsed
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
-dsgc-abort-if-any-collapsed
 ;
 
 %S = type { double, int }


Index: llvm/test/Regression/Analysis/DSGraph/2004-02-13-memcpy.ll
diff -u llvm/test/Regression/Analysis/DSGraph/2004-02-13-memcpy.ll:1.5 
llvm/test/Regression/Analysis/DSGraph/2004-02-13-memcpy.ll:1.6
--- llvm/test/Regression/Analysis/DSGraph/2004-02-13-memcpy.ll:1.5      Fri Aug 
18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2004-02-13-memcpy.ll  Sun Aug 27 
17:47:14 2006
@@ -1,5 +1,5 @@
-; RUN: opt -analyze %s -datastructure-gc -dsgc-check-flags=Xn:SMR
-; RUN: opt -analyze %s -datastructure-gc -dsgc-check-flags=X:SMR
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-check-flags=Xn:SMR 
&&
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-check-flags=X:SMR
 
 declare void %llvm.memcpy.i32(sbyte*, sbyte*, uint, uint)
 declare void %llvm.memmove.i32(sbyte*, sbyte*, uint, uint)


Index: llvm/test/Regression/Analysis/DSGraph/2005-03-22-IncompleteGlobal.ll
diff -u 
llvm/test/Regression/Analysis/DSGraph/2005-03-22-IncompleteGlobal.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/2005-03-22-IncompleteGlobal.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/2005-03-22-IncompleteGlobal.ll:1.3    
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2005-03-22-IncompleteGlobal.ll        
Sun Aug 27 17:47:14 2006
@@ -1,5 +1,5 @@
-; RUN: opt -analyze %s -datastructure-gc  -dsgc-check-flags=G:GIM 
-dsgc-dspass=bu &&\
-; RUN: opt -analyze %s -datastructure-gc  -dsgc-check-flags=G:GIM 
-dsgc-dspass=td
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc  -dsgc-check-flags=G:GIM 
-dsgc-dspass=bu &&\
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc  -dsgc-check-flags=G:GIM 
-dsgc-dspass=td
 
 %S = type { double, int }
 


Index: llvm/test/Regression/Analysis/DSGraph/2006-04-25-ZeroArrayStructUse.ll
diff -u 
llvm/test/Regression/Analysis/DSGraph/2006-04-25-ZeroArrayStructUse.ll:1.2 
llvm/test/Regression/Analysis/DSGraph/2006-04-25-ZeroArrayStructUse.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/2006-04-25-ZeroArrayStructUse.ll:1.2  
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/2006-04-25-ZeroArrayStructUse.ll      
Sun Aug 27 17:47:14 2006
@@ -1,4 +1,4 @@
-; RUN: opt -analyze %s -datastructure-gc -dsgc-check-flags=x:IA
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-check-flags=x:IA
 
 ; ModuleID = 'bug3.bc'
 target endian = little


Index: llvm/test/Regression/Analysis/DSGraph/FunctionPointerTable-const.ll
diff -u llvm/test/Regression/Analysis/DSGraph/FunctionPointerTable-const.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/FunctionPointerTable-const.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/FunctionPointerTable-const.ll:1.3     
Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/FunctionPointerTable-const.ll Sun Aug 
27 17:47:14 2006
@@ -1,7 +1,7 @@
 ; FIXME: this should be SHM for bu, but change it for now since besides 
incompleteness
 ;        this is working
-; RUN: opt -analyze %s -datastructure-gc -dsgc-dspass=bu 
-dsgc-check-flags=Y:SHIM && \
-; RUN: opt -analyze %s -datastructure-gc -dsgc-dspass=td 
-dsgc-check-flags=P1:SHM,P2:SHM
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-dspass=bu 
-dsgc-check-flags=Y:SHIM && \
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-dspass=td 
-dsgc-check-flags=P1:SHM,P2:SHM
 
 %G = internal constant [2 x int*(int*)*] [ 
   int*(int*)* %callee1, int*(int*)* %callee2


Index: llvm/test/Regression/Analysis/DSGraph/GlobalsGraphFuncPtr.ll
diff -u llvm/test/Regression/Analysis/DSGraph/GlobalsGraphFuncPtr.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/GlobalsGraphFuncPtr.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/GlobalsGraphFuncPtr.ll:1.3    Fri Aug 
18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/GlobalsGraphFuncPtr.ll        Sun Aug 
27 17:47:14 2006
@@ -5,7 +5,7 @@
 ; -- globals in GG pointed to by latter should be marked I, but not other nodes
 ;
 ; FIXME: KnownPtr should be just S.
-; RUN: opt -analyze %s -datastructure-gc 
-dsgc-check-flags=KnownPtr:SI,UnknownPtr:SI -dsgc-dspass=bu
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
-dsgc-check-flags=KnownPtr:SI,UnknownPtr:SI -dsgc-dspass=bu
 
 %Z = internal global int 0
 %X = internal global int 0


Index: llvm/test/Regression/Analysis/DSGraph/HardBUCase.ll
diff -u llvm/test/Regression/Analysis/DSGraph/HardBUCase.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/HardBUCase.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/HardBUCase.ll:1.3     Fri Aug 18 
01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/HardBUCase.ll Sun Aug 27 17:47:14 2006
@@ -1,4 +1,4 @@
-; RUN: opt -analyze %s -budatastructure -dont-print-ds
+; RUN: llvm-as < %s | opt -analyze -budatastructure -dont-print-ds
 
 %MidFnTy = type void (\2*)
 


Index: llvm/test/Regression/Analysis/DSGraph/PhysicalSubtyping.ll
diff -u llvm/test/Regression/Analysis/DSGraph/PhysicalSubtyping.ll:1.2 
llvm/test/Regression/Analysis/DSGraph/PhysicalSubtyping.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/PhysicalSubtyping.ll:1.2      Fri Aug 
18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/PhysicalSubtyping.ll  Sun Aug 27 
17:47:14 2006
@@ -1,6 +1,6 @@
 ; Test to check for support for "physical subtyping"
 ;
-; RUN: opt -analyze %s -datastructure-gc -dsgc-abort-if-any-collapsed
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
-dsgc-abort-if-any-collapsed
 ;
 %S = type { int }
 %T = type { int, float, double }


Index: llvm/test/Regression/Analysis/DSGraph/SCCSimpleExample.ll
diff -u llvm/test/Regression/Analysis/DSGraph/SCCSimpleExample.ll:1.2 
llvm/test/Regression/Analysis/DSGraph/SCCSimpleExample.ll:1.3
--- llvm/test/Regression/Analysis/DSGraph/SCCSimpleExample.ll:1.2       Fri Aug 
18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/SCCSimpleExample.ll   Sun Aug 27 
17:47:14 2006
@@ -1,5 +1,5 @@
 
-; RUN: opt -analyze %s -datastructure-gc --dsgc-abort-if-merged=Y,BVal
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
--dsgc-abort-if-merged=Y,BVal
 
 implementation
 


Index: llvm/test/Regression/Analysis/DSGraph/constant_globals.ll
diff -u llvm/test/Regression/Analysis/DSGraph/constant_globals.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/constant_globals.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/constant_globals.ll:1.3       Fri Aug 
18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/constant_globals.ll   Sun Aug 27 
17:47:14 2006
@@ -1,5 +1,5 @@
 ; FIXME: A should just be SM
-; RUN: opt -analyze %s -datastructure-gc -dsgc-dspass=bu 
-dsgc-check-flags=A:SIM
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc -dsgc-dspass=bu 
-dsgc-check-flags=A:SIM
 ; Constant globals should not mark stuff incomplete.  This should allow the 
 ; bu pass to resolve the indirect call immediately in "test", allowing %A to
 ; be marked complete and the store to happen.


Index: llvm/test/Regression/Analysis/DSGraph/strcpy.ll
diff -u llvm/test/Regression/Analysis/DSGraph/strcpy.ll:1.3 
llvm/test/Regression/Analysis/DSGraph/strcpy.ll:1.4
--- llvm/test/Regression/Analysis/DSGraph/strcpy.ll:1.3 Fri Aug 18 01:34:30 2006
+++ llvm/test/Regression/Analysis/DSGraph/strcpy.ll     Sun Aug 27 17:47:14 2006
@@ -3,7 +3,7 @@
 ; has no defined way to check for this, so DSA can know that strcpy doesn't
 ; require merging the input arguments.
 
-; RUN: opt -analyze %s -datastructure-gc --dsgc-abort-if-merged=A,B 
--dsgc-check-flags=A:ASM,B:ASR --dsgc-dspass=bu
+; RUN: llvm-as < %s | opt -analyze -datastructure-gc 
--dsgc-abort-if-merged=A,B --dsgc-check-flags=A:ASM,B:ASR --dsgc-dspass=bu
 
 implementation
 



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

Reply via email to