summaryrefslogtreecommitdiff
path: root/test/Transforms/LCSSA
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-28 00:27:48 +0000
committerDan Gohman <gohman@apple.com>2009-09-28 00:27:48 +0000
commit9450b0e1a6154192ca597ad27f8eb6e6e807f7a4 (patch)
tree30b9306c15136bcce40db9d6de99e2ce201f581a /test/Transforms/LCSSA
parentf3f0c89f5f9c2ad99169084cbfedaf3ed0ee6a50 (diff)
downloadllvm-9450b0e1a6154192ca597ad27f8eb6e6e807f7a4.tar.gz
llvm-9450b0e1a6154192ca597ad27f8eb6e6e807f7a4.tar.bz2
llvm-9450b0e1a6154192ca597ad27f8eb6e6e807f7a4.tar.xz
Move the dominator verification code out of special code embedded within
the PassManager code into a regular verifyAnalysis method. Also, reorganize loop verification. Make the LoopPass infrastructure call verifyLoop as needed instead of having LoopInfo::verifyAnalysis check every loop in the function after each looop pass. Add a new command-line argument, -verify-loop-info, to enable the expensive full checking. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82952 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LCSSA')
-rw-r--r--test/Transforms/LCSSA/2006-10-31-UnreachableBlock-2.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/LCSSA/2006-10-31-UnreachableBlock-2.ll b/test/Transforms/LCSSA/2006-10-31-UnreachableBlock-2.ll
index 6f583f47ce..3ba8d18b00 100644
--- a/test/Transforms/LCSSA/2006-10-31-UnreachableBlock-2.ll
+++ b/test/Transforms/LCSSA/2006-10-31-UnreachableBlock-2.ll
@@ -1,4 +1,4 @@
-; RUN: opt < %s -lcssa -disable-output -verify-dom-info
+; RUN: opt < %s -lcssa -disable-output -verify-dom-info -verify-loop-info
; PR977
; END.
declare i32 @opost_block()