mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
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:
parent
0c2f83e756
commit
d31af2ab6b
@ -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)
|
||||
|
@ -1,6 +1,6 @@
|
||||
; Crash in post dominator set construction.
|
||||
;
|
||||
; RUN: analyze -postdomset %s
|
||||
; RUN: opt -analyze -postdomset %s
|
||||
;
|
||||
|
||||
implementation
|
||||
|
@ -1,6 +1,6 @@
|
||||
; Crash in post dominator set construction.
|
||||
;
|
||||
; RUN: analyze -postdomset %s
|
||||
; RUN: opt -analyze -postdomset %s
|
||||
;
|
||||
|
||||
implementation
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user