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/IntervalPartition.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/IntervalPartition.cpp')
-rw-r--r-- | llvm/lib/Analysis/IntervalPartition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/IntervalPartition.cpp b/llvm/lib/Analysis/IntervalPartition.cpp index 2e8668ae5d4..97e8b715721 100644 --- a/llvm/lib/Analysis/IntervalPartition.cpp +++ b/llvm/lib/Analysis/IntervalPartition.cpp @@ -11,7 +11,7 @@ using std::make_pair; static RegisterAnalysis<IntervalPartition> -X("intervals", "Interval Partition Construction"); +X("intervals", "Interval Partition Construction", true); AnalysisID IntervalPartition::ID = X; |