diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-06 21:45:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-06 21:45:00 +0000 |
commit | 6128690c629380291b7185f09cd82ed5244c8a41 (patch) | |
tree | 0b77eb8c44b7351585c37389b570964d089ba9fe /lib/Analysis/ScalarEvolution.cpp | |
parent | f1fe32e337cf825a27a57bb3e9fb847bc91a26ce (diff) |
Don't make this require loopsimplify. It works BETTER with loop simplify
but should not require it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index d8ccc8ea62..0ffe79e539 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -2320,7 +2320,6 @@ void ScalarEvolution::releaseMemory() { void ScalarEvolution::getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); - AU.addRequiredID(LoopSimplifyID); AU.addRequiredTransitive<LoopInfo>(); } |