diff options
| author | Dan Gohman <gohman@apple.com> | 2010-03-10 19:38:49 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-03-10 19:38:49 +0000 |
| commit | 2734ebd37f0a9468789533cf395a3d088f8a151d (patch) | |
| tree | 0c8334f318b4d135091d132267c0da1f87e6ff81 /llvm/lib/Transforms/Utils/LCSSA.cpp | |
| parent | 474e488c06fb59b53f597515c01aee140707451f (diff) | |
| download | bcm5719-llvm-2734ebd37f0a9468789533cf395a3d088f8a151d.tar.gz bcm5719-llvm-2734ebd37f0a9468789533cf395a3d088f8a151d.zip | |
Add a DominatorTree argument to isLCSSA so that it doesn't have to
compute a set of reachable blocks for itself each time it is called, which
is fairly frequently.
llvm-svn: 98179
Diffstat (limited to 'llvm/lib/Transforms/Utils/LCSSA.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Utils/LCSSA.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp index 590d667a1aa..df6e603c0ba 100644 --- a/llvm/lib/Transforms/Utils/LCSSA.cpp +++ b/llvm/lib/Transforms/Utils/LCSSA.cpp @@ -88,7 +88,7 @@ namespace { /// verifyAnalysis() - Verify loop nest. virtual void verifyAnalysis() const { // Check the special guarantees that LCSSA makes. - assert(L->isLCSSAForm() && "LCSSA form not preserved!"); + assert(L->isLCSSAForm(*DT) && "LCSSA form not preserved!"); } /// inLoop - returns true if the given block is within the current loop @@ -164,7 +164,7 @@ bool LCSSA::runOnLoop(Loop *TheLoop, LPPassManager &LPM) { } } - assert(L->isLCSSAForm()); + assert(L->isLCSSAForm(*DT)); PredCache.clear(); return MadeChange; |

