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 | 568dca96c9ac765bae41b8abc30861a953ade6fd (patch) | |
| tree | 53e2314da7bae7a46a10295c38f6ad540641b210 /llvm | |
| parent | 672b0e2a3bfe2e257de9d1a6e7ac518fb3f255c6 (diff) | |
| download | bcm5719-llvm-568dca96c9ac765bae41b8abc30861a953ade6fd.tar.gz bcm5719-llvm-568dca96c9ac765bae41b8abc30861a953ade6fd.zip | |
Modified the RUN line from "analyze ..." to "opt -analyze ..." because
Reid removed the analyze tool and incorporated it into the opt tool.
llvm-svn: 29807
Diffstat (limited to 'llvm')
5 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/Regression/Other/2002-01-31-CallGraph.ll b/llvm/test/Regression/Other/2002-01-31-CallGraph.ll index e9a5a6eae1b..2609e45eaea 100644 --- a/llvm/test/Regression/Other/2002-01-31-CallGraph.ll +++ b/llvm/test/Regression/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/llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll b/llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll index b0eca495b44..eba0c8b5e5a 100644 --- a/llvm/test/Regression/Other/2002-01-31-PostDomSet-2.ll +++ b/llvm/test/Regression/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/llvm/test/Regression/Other/2002-01-31-PostDomSet.ll b/llvm/test/Regression/Other/2002-01-31-PostDomSet.ll index bb38be855f1..cfb0f4e1773 100644 --- a/llvm/test/Regression/Other/2002-01-31-PostDomSet.ll +++ b/llvm/test/Regression/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/llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll b/llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll index a6bf60a4b88..4b11eb81d5b 100644 --- a/llvm/test/Regression/Other/2002-08-02-DomSetProblem.ll +++ b/llvm/test/Regression/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/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll b/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll index d06a5f52256..157a881b490 100644 --- a/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll +++ b/llvm/test/Regression/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 |

