[llvm-commits] CVS: llvm/test/Regression/Other/2002-01-31-CallGraph.ll 2002-01-31-PostDomSet-2.ll 2002-01-31-PostDomSet.ll 2002-02-24-InlineBrokePHINodes.ll 2002-03-11-ConstPropCrash.ll 2002-08-02-DomSetProblem.ll 2003-02-19-LoopInfoNestingBug.ll 2004-08-16-LowerPacked.ll 2004-08-16-PackedConstantInlineStore.ll 2004-08-16-PackedGlobalConstant.ll 2004-08-16-PackedSelect.ll 2004-08-16-PackedSimple.ll 2004-08-20-PackedControlFlow.ll
Reid Spencer
reid at x10sys.com
Fri Dec 1 20:25:18 PST 2006
Changes in directory llvm/test/Regression/Other:
2002-01-31-CallGraph.ll updated: 1.3 -> 1.4
2002-01-31-PostDomSet-2.ll updated: 1.3 -> 1.4
2002-01-31-PostDomSet.ll updated: 1.4 -> 1.5
2002-02-24-InlineBrokePHINodes.ll updated: 1.3 -> 1.4
2002-03-11-ConstPropCrash.ll updated: 1.2 -> 1.3
2002-08-02-DomSetProblem.ll updated: 1.3 -> 1.4
2003-02-19-LoopInfoNestingBug.ll updated: 1.4 -> 1.5
2004-08-16-LowerPacked.ll updated: 1.1 -> 1.2
2004-08-16-PackedConstantInlineStore.ll updated: 1.1 -> 1.2
2004-08-16-PackedGlobalConstant.ll updated: 1.1 -> 1.2
2004-08-16-PackedSelect.ll updated: 1.1 -> 1.2
2004-08-16-PackedSimple.ll updated: 1.1 -> 1.2
2004-08-20-PackedControlFlow.ll updated: 1.2 -> 1.3
---
Log message:
Use the llvm-upgrade program to upgrade llvm assembly.
---
Diffs of the changes: (+13 -13)
2002-01-31-CallGraph.ll | 2 +-
2002-01-31-PostDomSet-2.ll | 2 +-
2002-01-31-PostDomSet.ll | 2 +-
2002-02-24-InlineBrokePHINodes.ll | 2 +-
2002-03-11-ConstPropCrash.ll | 2 +-
2002-08-02-DomSetProblem.ll | 2 +-
2003-02-19-LoopInfoNestingBug.ll | 2 +-
2004-08-16-LowerPacked.ll | 2 +-
2004-08-16-PackedConstantInlineStore.ll | 2 +-
2004-08-16-PackedGlobalConstant.ll | 2 +-
2004-08-16-PackedSelect.ll | 2 +-
2004-08-16-PackedSimple.ll | 2 +-
2004-08-20-PackedControlFlow.ll | 2 +-
13 files changed, 13 insertions(+), 13 deletions(-)
Index: llvm/test/Regression/Other/2002-01-31-CallGraph.ll
diff -u llvm/test/Regression/Other/2002-01-31-CallGraph.ll:1.3 llvm/test/Regression/Other/2002-01-31-CallGraph.ll:1.4
--- llvm/test/Regression/Other/2002-01-31-CallGraph.ll:1.3 Sun Aug 27 17:44:20 2006
+++ llvm/test/Regression/Other/2002-01-31-CallGraph.ll Fri Dec 1 22:23:08 2006
@@ -1,6 +1,6 @@
; Call graph construction crash: Not handling indirect calls right
;
-; RUN: llvm-as < %s | opt -analyze -callgraph
+; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -callgraph
;
%FunTy = type int(int)
Index: llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll
diff -u llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll:1.3 llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll:1.4
--- llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll:1.3 Sun Aug 27 17:44:20 2006
+++ llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll Fri Dec 1 22:23:08 2006
@@ -1,6 +1,6 @@
; Crash in post dominator set construction.
;
-; RUN: llvm-as < %s | opt -analyze -postdomset
+; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -postdomset
;
implementation
Index: llvm/test/Regression/Other/2002-01-31-PostDomSet.ll
diff -u llvm/test/Regression/Other/2002-01-31-PostDomSet.ll:1.4 llvm/test/Regression/Other/2002-01-31-PostDomSet.ll:1.5
--- llvm/test/Regression/Other/2002-01-31-PostDomSet.ll:1.4 Sun Aug 27 17:44:20 2006
+++ llvm/test/Regression/Other/2002-01-31-PostDomSet.ll Fri Dec 1 22:23:08 2006
@@ -1,6 +1,6 @@
; Crash in post dominator set construction.
;
-; RUN: llvm-as < %s | opt -analyze -postdomset
+; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -postdomset
;
implementation
Index: llvm/test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll
diff -u llvm/test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll:1.3 llvm/test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll:1.4
--- llvm/test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll:1.3 Tue Sep 16 10:25:15 2003
+++ llvm/test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll Fri Dec 1 22:23:08 2006
@@ -1,7 +1,7 @@
; Inlining used to break PHI nodes. This tests that they are correctly updated
; when a node is split around the call instruction. The verifier caught the error.
;
-; RUN: llvm-as < %s | opt -inline
+; RUN: llvm-upgrade < %s | llvm-as | opt -inline
;
implementation
Index: llvm/test/Regression/Other/2002-03-11-ConstPropCrash.ll
diff -u llvm/test/Regression/Other/2002-03-11-ConstPropCrash.ll:1.2 llvm/test/Regression/Other/2002-03-11-ConstPropCrash.ll:1.3
--- llvm/test/Regression/Other/2002-03-11-ConstPropCrash.ll:1.2 Tue Sep 16 10:25:15 2003
+++ llvm/test/Regression/Other/2002-03-11-ConstPropCrash.ll Fri Dec 1 22:23:08 2006
@@ -5,7 +5,7 @@
;
; Fixed by adding new arguments to ConstantFoldTerminator
;
-; RUN: llvm-as < %s | opt -constprop
+; RUN: llvm-upgrade < %s | llvm-as | opt -constprop
implementation
Index: llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll
diff -u llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll:1.3 llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll:1.4
--- llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll:1.3 Sun Aug 27 17:44:20 2006
+++ llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll Fri Dec 1 22:23:08 2006
@@ -2,7 +2,7 @@
; blocks. These blocks should at least dominate themselves. This is
; fouling up the verify pass.
;
-; RUN: llvm-as < %s | opt -analyze -domset | grep BB
+; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -domset | grep BB
void %test() {
ret void
Index: llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll
diff -u llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll:1.4 llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll:1.5
--- llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll:1.4 Sun Aug 27 17:44:20 2006
+++ llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll Fri Dec 1 22:23:08 2006
@@ -2,7 +2,7 @@
; figure out that loop "Inner" should be nested inside of leep "LoopHeader",
; and instead nests it just inside loop "Top"
;
-; RUN: llvm-as < %s | opt -analyze -loops | grep ' Loop Containing:[ ]*%Inner'
+; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -loops | grep ' Loop Containing:[ ]*%Inner'
;
implementation
Index: llvm/test/Regression/Other/2004-08-16-LowerPacked.ll
diff -u llvm/test/Regression/Other/2004-08-16-LowerPacked.ll:1.1 llvm/test/Regression/Other/2004-08-16-LowerPacked.ll:1.2
--- llvm/test/Regression/Other/2004-08-16-LowerPacked.ll:1.1 Fri Aug 20 01:06:43 2004
+++ llvm/test/Regression/Other/2004-08-16-LowerPacked.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -lower-packed | llvm-dis
+; RUN: llvm-upgrade < %s | llvm-as | opt -lower-packed | llvm-dis
%foo = uninitialized global <2 x int>;
%bar = uninitialized global <2 x int>;
Index: llvm/test/Regression/Other/2004-08-16-PackedConstantInlineStore.ll
diff -u llvm/test/Regression/Other/2004-08-16-PackedConstantInlineStore.ll:1.1 llvm/test/Regression/Other/2004-08-16-PackedConstantInlineStore.ll:1.2
--- llvm/test/Regression/Other/2004-08-16-PackedConstantInlineStore.ll:1.1 Fri Aug 20 01:06:43 2004
+++ llvm/test/Regression/Other/2004-08-16-PackedConstantInlineStore.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llvm-dis
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
%bar = external global <2 x int> ; <<2 x int>*> [#uses=1]
Index: llvm/test/Regression/Other/2004-08-16-PackedGlobalConstant.ll
diff -u llvm/test/Regression/Other/2004-08-16-PackedGlobalConstant.ll:1.1 llvm/test/Regression/Other/2004-08-16-PackedGlobalConstant.ll:1.2
--- llvm/test/Regression/Other/2004-08-16-PackedGlobalConstant.ll:1.1 Fri Aug 20 01:06:43 2004
+++ llvm/test/Regression/Other/2004-08-16-PackedGlobalConstant.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llvm-dis
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
%foo = global <2 x int> <int 0, int 1>;
%bar = uninitialized global <2 x int>;
Index: llvm/test/Regression/Other/2004-08-16-PackedSelect.ll
diff -u llvm/test/Regression/Other/2004-08-16-PackedSelect.ll:1.1 llvm/test/Regression/Other/2004-08-16-PackedSelect.ll:1.2
--- llvm/test/Regression/Other/2004-08-16-PackedSelect.ll:1.1 Fri Aug 20 01:06:43 2004
+++ llvm/test/Regression/Other/2004-08-16-PackedSelect.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llvm-dis
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
%foo = uninitialized global <4 x float>;
%bar = uninitialized global <4 x float>;
Index: llvm/test/Regression/Other/2004-08-16-PackedSimple.ll
diff -u llvm/test/Regression/Other/2004-08-16-PackedSimple.ll:1.1 llvm/test/Regression/Other/2004-08-16-PackedSimple.ll:1.2
--- llvm/test/Regression/Other/2004-08-16-PackedSimple.ll:1.1 Fri Aug 20 01:06:43 2004
+++ llvm/test/Regression/Other/2004-08-16-PackedSimple.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llvm-dis
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
%foo = uninitialized global <4 x float>;
%bar = uninitialized global <4 x float>;
Index: llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll
diff -u llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll:1.2 llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll:1.3
--- llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll:1.2 Sun Aug 27 17:44:20 2006
+++ llvm/test/Regression/Other/2004-08-20-PackedControlFlow.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llvm-dis | llvm-as > /dev/null
+; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | llvm-as > /dev/null
%v4f = type <4 x float>
More information about the llvm-commits
mailing list