From: Bill Wendling Date: Tue, 22 Aug 2006 04:37:51 +0000 (+0000) Subject: Modified the RUN line from "analyze ..." to "opt -analyze ..." because X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d31af2ab6b3ceba60220fc12c84cb7f316c8deb3;p=oota-llvm.git Modified the RUN line from "analyze ..." to "opt -analyze ..." because 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 --- diff --git a/test/Other/2002-01-31-CallGraph.ll b/test/Other/2002-01-31-CallGraph.ll index e9a5a6eae1b..2609e45eaea 100644 --- a/test/Other/2002-01-31-CallGraph.ll +++ b/test/Other/2002-01-31-CallGraph.ll @@ -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) diff --git a/test/Other/2002-01-31-PostDomSet-2.ll b/test/Other/2002-01-31-PostDomSet-2.ll index b0eca495b44..eba0c8b5e5a 100644 --- a/test/Other/2002-01-31-PostDomSet-2.ll +++ b/test/Other/2002-01-31-PostDomSet-2.ll @@ -1,6 +1,6 @@ ; Crash in post dominator set construction. ; -; RUN: analyze -postdomset %s +; RUN: opt -analyze -postdomset %s ; implementation diff --git a/test/Other/2002-01-31-PostDomSet.ll b/test/Other/2002-01-31-PostDomSet.ll index bb38be855f1..cfb0f4e1773 100644 --- a/test/Other/2002-01-31-PostDomSet.ll +++ b/test/Other/2002-01-31-PostDomSet.ll @@ -1,6 +1,6 @@ ; Crash in post dominator set construction. ; -; RUN: analyze -postdomset %s +; RUN: opt -analyze -postdomset %s ; implementation diff --git a/test/Other/2002-08-02-DomSetProblem.ll b/test/Other/2002-08-02-DomSetProblem.ll index a6bf60a4b88..4b11eb81d5b 100644 --- a/test/Other/2002-08-02-DomSetProblem.ll +++ b/test/Other/2002-08-02-DomSetProblem.ll @@ -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 diff --git a/test/Other/2003-02-19-LoopInfoNestingBug.ll b/test/Other/2003-02-19-LoopInfoNestingBug.ll index d06a5f52256..157a881b490 100644 --- a/test/Other/2003-02-19-LoopInfoNestingBug.ll +++ b/test/Other/2003-02-19-LoopInfoNestingBug.ll @@ -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