diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-08-22 04:37:51 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-08-22 04:37:51 +0000 |
commit | d31af2ab6b3ceba60220fc12c84cb7f316c8deb3 (patch) | |
tree | 3bcadbc59ec628263c728efcf4444d2167fd37e5 | |
parent | 0c2f83e756ad808aedf6cb39ea043d3d4cd79909 (diff) |
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
-rw-r--r-- | test/Other/2002-01-31-CallGraph.ll | 2 | ||||
-rw-r--r-- | test/Other/2002-01-31-PostDomSet-2.ll | 2 | ||||
-rw-r--r-- | test/Other/2002-01-31-PostDomSet.ll | 2 | ||||
-rw-r--r-- | test/Other/2002-08-02-DomSetProblem.ll | 2 | ||||
-rw-r--r-- | test/Other/2003-02-19-LoopInfoNestingBug.ll | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/test/Other/2002-01-31-CallGraph.ll b/test/Other/2002-01-31-CallGraph.ll index e9a5a6eae1..2609e45eae 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 b0eca495b4..eba0c8b5e5 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 bb38be855f..cfb0f4e177 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 a6bf60a4b8..4b11eb81d5 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 d06a5f5225..157a881b49 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 |