diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-11 04:47:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-11 04:47:54 +0000 |
commit | 0c26f0048f96e0dcf6aa7fc4ac8fc3178331f7d0 (patch) | |
tree | 6714ed3a022b5697ecf87a6021b726b3201514d2 | |
parent | 6e445dc299c96cff2e2b75400a734e95fbcd2163 (diff) | |
download | bcm5719-llvm-0c26f0048f96e0dcf6aa7fc4ac8fc3178331f7d0.tar.gz bcm5719-llvm-0c26f0048f96e0dcf6aa7fc4ac8fc3178331f7d0.zip |
Make sure to register the 'no profile' implementation as the default for ProfileInfo
llvm-svn: 11309
-rw-r--r-- | llvm/lib/Analysis/ProfileInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileInfo.cpp b/llvm/lib/Analysis/ProfileInfo.cpp index 8a0dbe64044..24a26c87213 100644 --- a/llvm/lib/Analysis/ProfileInfo.cpp +++ b/llvm/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 |