[llvm-commits] CVS: llvm/test/Regression/Other/2002-01-31-CallGraph.ll 2002-01-31-PostDomSet-2.ll 2002-01-31-PostDomSet.ll 2002-08-02-DomSetProblem.ll 2003-02-19-LoopInfoNestingBug.ll
Bill Wendling
isanbard at gmail.com
Mon Aug 21 21:38:05 PDT 2006
Changes in directory llvm/test/Regression/Other:
2002-01-31-CallGraph.ll updated: 1.1 -> 1.2
2002-01-31-PostDomSet-2.ll updated: 1.1 -> 1.2
2002-01-31-PostDomSet.ll updated: 1.2 -> 1.3
2002-08-02-DomSetProblem.ll updated: 1.1 -> 1.2
2003-02-19-LoopInfoNestingBug.ll updated: 1.2 -> 1.3
---
Log message:
Modified the RUN line from "analyze ..." to "opt -analyze ..." because
Reid removed the analyze tool and incorporated it into the opt tool.
---
Diffs of the changes: (+5 -5)
2002-01-31-CallGraph.ll | 2 +-
2002-01-31-PostDomSet-2.ll | 2 +-
2002-01-31-PostDomSet.ll | 2 +-
2002-08-02-DomSetProblem.ll | 2 +-
2003-02-19-LoopInfoNestingBug.ll | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
Index: llvm/test/Regression/Other/2002-01-31-CallGraph.ll
diff -u llvm/test/Regression/Other/2002-01-31-CallGraph.ll:1.1 llvm/test/Regression/Other/2002-01-31-CallGraph.ll:1.2
--- llvm/test/Regression/Other/2002-01-31-CallGraph.ll:1.1 Thu Jan 31 23:04:58 2002
+++ llvm/test/Regression/Other/2002-01-31-CallGraph.ll Mon Aug 21 23:37:51 2006
@@ -1,6 +1,6 @@
; Call graph construction crash: Not handling indirect calls right
;
-; RUN: analyze -callgraph %s
+; RUN: opt -analyze -callgraph %s
;
%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.1 llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll:1.2
--- llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll:1.1 Tue Jul 23 13:28:03 2002
+++ llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll Mon Aug 21 23:37:51 2006
@@ -1,6 +1,6 @@
; Crash in post dominator set construction.
;
-; RUN: analyze -postdomset %s
+; RUN: opt -analyze -postdomset %s
;
implementation
Index: llvm/test/Regression/Other/2002-01-31-PostDomSet.ll
diff -u llvm/test/Regression/Other/2002-01-31-PostDomSet.ll:1.2 llvm/test/Regression/Other/2002-01-31-PostDomSet.ll:1.3
--- llvm/test/Regression/Other/2002-01-31-PostDomSet.ll:1.2 Thu Jan 31 22:44:38 2002
+++ llvm/test/Regression/Other/2002-01-31-PostDomSet.ll Mon Aug 21 23:37:51 2006
@@ -1,6 +1,6 @@
; Crash in post dominator set construction.
;
-; RUN: analyze -postdomset %s
+; RUN: opt -analyze -postdomset %s
;
implementation
Index: llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll
diff -u llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll:1.1 llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll:1.2
--- llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll:1.1 Fri Aug 2 11:41:21 2002
+++ llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll Mon Aug 21 23:37:51 2006
@@ -2,7 +2,7 @@
; blocks. These blocks should at least dominate themselves. This is
; fouling up the verify pass.
;
-; RUN: analyze -domset %s | grep BB
+; RUN: opt -analyze -domset %s | 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.2 llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll:1.3
--- llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll:1.2 Tue Jul 1 16:03:30 2003
+++ llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll Mon Aug 21 23:37:51 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: analyze -loops %s | grep ' Loop Containing:[ ]*%Inner'
+; RUN: opt -analyze -loops %s | grep ' Loop Containing:[ ]*%Inner'
;
implementation
More information about the llvm-commits
mailing list