Modified the RUN line from "analyze ..." to "opt -analyze ..." because
authorBill Wendling <isanbard@gmail.com>
Tue, 22 Aug 2006 04:37:51 +0000 (04:37 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 22 Aug 2006 04:37:51 +0000 (04:37 +0000)
Reid removed the analyze tool and incorporated it into the opt tool.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29807 91177308-0d34-0410-b5e6-96231b3b80d8

test/Other/2002-01-31-CallGraph.ll
test/Other/2002-01-31-PostDomSet-2.ll
test/Other/2002-01-31-PostDomSet.ll
test/Other/2002-08-02-DomSetProblem.ll
test/Other/2003-02-19-LoopInfoNestingBug.ll

index e9a5a6eae1badeeee9db96044c950d4bad772203..2609e45eaea82212a77a3d0f33a00c209dc7bf38 100644 (file)
@@ -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 b0eca495b448e457aba459090128c25b5f88f3d5..eba0c8b5e5a276fb7a66cd3c2f5b2f58f42c3abb 100644 (file)
@@ -1,6 +1,6 @@
 ; Crash in post dominator set construction.
 ;
-; RUN: analyze -postdomset %s
+; RUN: opt -analyze -postdomset %s
 ;
 
 implementation
index bb38be855f1ca716a33e26c52dbae06e2a696954..cfb0f4e1773231b52e6b0b753e1a3869b342be05 100644 (file)
@@ -1,6 +1,6 @@
 ; Crash in post dominator set construction.
 ;
-; RUN: analyze -postdomset %s
+; RUN: opt -analyze -postdomset %s
 ;
 
 implementation
index a6bf60a4b88ff6cf18d53bf14f21cf8eefcb36af..4b11eb81d5b702b88c09b999fb090747d4394bbd 100644 (file)
@@ -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 d06a5f52256c8a50e40823257a4eb53183539156..157a881b4908566b7a0a7a37798b70156bee3449 100644 (file)
@@ -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