diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-30 16:27:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-30 16:27:52 +0000 |
commit | 31aa7e72f2e05c9b9bfdb003c9b7da66cfd9670d (patch) | |
tree | 4178f6d040df8df2f8b1f792fbefdfb07be16ed3 /llvm/lib/Analysis/LoopInfo.cpp | |
parent | 0d273698dff16a75499baa74deb2bcfd4619ac7d (diff) | |
download | bcm5719-llvm-31aa7e72f2e05c9b9bfdb003c9b7da66cfd9670d.tar.gz bcm5719-llvm-31aa7e72f2e05c9b9bfdb003c9b7da66cfd9670d.zip |
Declare that these passes only depend on the CFG of the function
llvm-svn: 3157
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index 8b3a4348228..619e434e574 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/lib/Analysis/LoopInfo.cpp @@ -15,7 +15,7 @@ #include <algorithm> static RegisterAnalysis<LoopInfo> -X("loops", "Natural Loop Construction"); +X("loops", "Natural Loop Construction", true); AnalysisID LoopInfo::ID = X; //===----------------------------------------------------------------------===// |