[llvm-commits] CVS: llvm/lib/Analysis/ProfileInfo.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Feb 11 00:11:02 PST 2004


Changes in directory llvm/lib/Analysis:

ProfileInfo.cpp updated: 1.2 -> 1.3

---
Log message:

Fix copy-and-pastos


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/Analysis/ProfileInfo.cpp
diff -u llvm/lib/Analysis/ProfileInfo.cpp:1.2 llvm/lib/Analysis/ProfileInfo.cpp:1.3
--- llvm/lib/Analysis/ProfileInfo.cpp:1.2	Tue Feb 10 22:47:54 2004
+++ llvm/lib/Analysis/ProfileInfo.cpp	Wed Feb 11 00:10:18 2004
@@ -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 @@
   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





More information about the llvm-commits mailing list