diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-06 19:32:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-06 19:32:07 +0000 |
commit | 07a228d1f7342c2fbe7dd7a307ee43b6bc026fc7 (patch) | |
tree | 80e96f7e18cd29656794813d1722da00a24bc38b /lib/Analysis/LoopInfo.cpp | |
parent | 27ad137d5ef5bb08f95c388e825b02e9c074b667 (diff) |
Mark analyses that only depend on the CFG of a function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 244db30649..d99f0f70d9 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp @@ -13,7 +13,7 @@ #include "Support/DepthFirstIterator.h" #include <algorithm> -AnalysisID LoopInfo::ID(AnalysisID::create<LoopInfo>()); +AnalysisID LoopInfo::ID(AnalysisID::create<LoopInfo>(), true); //===----------------------------------------------------------------------===// // Loop implementation |