diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-28 00:27:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-28 00:27:48 +0000 |
commit | 07fbbcdcfb6812cd5986ccc0188b293a8d01e961 (patch) | |
tree | 30b9306c15136bcce40db9d6de99e2ce201f581a /test/DebugInfo | |
parent | 1f7ba836613f713ff32349e1c08c152d0803100b (diff) | |
download | external_llvm-07fbbcdcfb6812cd5986ccc0188b293a8d01e961.zip external_llvm-07fbbcdcfb6812cd5986ccc0188b293a8d01e961.tar.gz external_llvm-07fbbcdcfb6812cd5986ccc0188b293a8d01e961.tar.bz2 |
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/DebugInfo')
-rw-r--r-- | test/DebugInfo/2009-01-15-RecordVariableCrash.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/DebugInfo/2009-01-15-RecordVariableCrash.ll b/test/DebugInfo/2009-01-15-RecordVariableCrash.ll index 42fb54c..cee4d72 100644 --- a/test/DebugInfo/2009-01-15-RecordVariableCrash.ll +++ b/test/DebugInfo/2009-01-15-RecordVariableCrash.ll @@ -1,4 +1,4 @@ -; RUN: llc %s -o /dev/null -verify-dom-info +; RUN: llc %s -o /dev/null -verify-dom-info -verify-loop-info %llvm.dbg.anchor.type = type { i32, i32 } %llvm.dbg.basictype.type = type { i32, { }*, i8*, { }*, i32, i64, i64, i64, i32, i32, i8*, i8* } %llvm.dbg.compile_unit.type = type { i32, { }*, i32, i8*, i8*, i8* } |