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
This commit is contained in:
Bill Wendling 2006-08-22 04:37:51 +00:00
parent 0c2f83e756
commit d31af2ab6b
5 changed files with 5 additions and 5 deletions

View 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)

View File

@ -1,6 +1,6 @@
; Crash in post dominator set construction.
;
; RUN: analyze -postdomset %s
; RUN: opt -analyze -postdomset %s
;
implementation

View File

@ -1,6 +1,6 @@
; Crash in post dominator set construction.
;
; RUN: analyze -postdomset %s
; RUN: opt -analyze -postdomset %s
;
implementation

View 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

View 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