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 | 747eee27079e6dfc31c32de5d5ed19d1464c9bdb (patch) | |
tree | c2feb7f427bd5e5dce5adfa2040b5d4e8707bdd1 /llvm/lib/Analysis/ScalarEvolution.cpp | |
parent | b067492535b2bc5bf83d11c383f8eb5e0803e665 (diff) | |
download | bcm5719-llvm-747eee27079e6dfc31c32de5d5ed19d1464c9bdb.tar.gz bcm5719-llvm-747eee27079e6dfc31c32de5d5ed19d1464c9bdb.zip |
Don't make this require loopsimplify. It works BETTER with loop simplify
but should not require it.
llvm-svn: 21123
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index d8ccc8ea621..0ffe79e5394 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/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>(); } |