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
; Call graph construction crash: Not handling indirect calls right
;
-; RUN: analyze -callgraph %s
+; RUN: opt -analyze -callgraph %s
;
%FunTy = type int(int)
; Crash in post dominator set construction.
;
-; RUN: analyze -postdomset %s
+; RUN: opt -analyze -postdomset %s
;
implementation
; Crash in post dominator set construction.
;
-; RUN: analyze -postdomset %s
+; RUN: opt -analyze -postdomset %s
;
implementation
; 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
; 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