Fix copy-and-pastos
[oota-llvm.git] / lib / Analysis / ProfileInfo.cpp
index 24a26c872131edcc96c306ad6875dc17785cab46..09bb1dfca13c6135f5253db1c23037c8a0f713f6 100644 (file)
@@ -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