summaryrefslogtreecommitdiff
path: root/lib/Analysis/ProfileInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-11 04:47:54 +0000
committerChris Lattner <sabre@nondot.org>2004-02-11 04:47:54 +0000
commitb060194a701081ed3e4113f2402436520aa4d420 (patch)
treec68f8bdfc0503b437340a3e1a5c876c42f0ae87d /lib/Analysis/ProfileInfo.cpp
parent40c5767b704c602ed9f9080a334b9cd9a01ecd79 (diff)
downloadllvm-b060194a701081ed3e4113f2402436520aa4d420.tar.gz
llvm-b060194a701081ed3e4113f2402436520aa4d420.tar.bz2
llvm-b060194a701081ed3e4113f2402436520aa4d420.tar.xz
Make sure to register the 'no profile' implementation as the default for ProfileInfo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11309 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfo.cpp')
-rw-r--r--lib/Analysis/ProfileInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp
index 8a0dbe6404..24a26c8721 100644
--- a/lib/Analysis/ProfileInfo.cpp
+++ b/lib/Analysis/ProfileInfo.cpp
@@ -38,5 +38,5 @@ namespace {
X("no-profile", "No Profile Information");
// Declare that we implement the AliasAnalysis interface
- RegisterAnalysisGroup<ProfileInfo, NoProfileInfo> Y;
+ RegisterAnalysisGroup<ProfileInfo, NoProfileInfo, true> Y;
} // End of anonymous namespace