summaryrefslogtreecommitdiff
path: root/lib/Analysis/ProfileInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-11 06:10:18 +0000
committerChris Lattner <sabre@nondot.org>2004-02-11 06:10:18 +0000
commitecefc96f05a904e1932f0c9508fcd926d501099d (patch)
treeb4f1e154858c137d7b7896b943a14df8d340f5ce /lib/Analysis/ProfileInfo.cpp
parent927fec3c3846369a834a15cbf216b5b5fc9a1491 (diff)
downloadllvm-ecefc96f05a904e1932f0c9508fcd926d501099d.tar.gz
llvm-ecefc96f05a904e1932f0c9508fcd926d501099d.tar.bz2
llvm-ecefc96f05a904e1932f0c9508fcd926d501099d.tar.xz
Fix copy-and-pastos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11319 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ProfileInfo.cpp')
-rw-r--r--lib/Analysis/ProfileInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp
index 24a26c8721..09bb1dfca1 100644
--- a/lib/Analysis/ProfileInfo.cpp
+++ b/lib/Analysis/ProfileInfo.cpp
@@ -16,7 +16,7 @@
#include "llvm/Pass.h"
using namespace llvm;
-// Register the AliasAnalysis interface, providing a nice name to refer to.
+// Register the ProfileInfo interface, providing a nice name to refer to.
namespace {
RegisterAnalysisGroup<ProfileInfo> Z("Profile Information");
}
@@ -37,6 +37,6 @@ namespace {
RegisterOpt<NoProfileInfo>
X("no-profile", "No Profile Information");
- // Declare that we implement the AliasAnalysis interface
+ // Declare that we implement the ProfileInfo interface
RegisterAnalysisGroup<ProfileInfo, NoProfileInfo, true> Y;
} // End of anonymous namespace