From: Chris Lattner Date: Wed, 11 Feb 2004 06:10:18 +0000 (+0000) Subject: Fix copy-and-pastos X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ecefc96f05a904e1932f0c9508fcd926d501099d;p=oota-llvm.git Fix copy-and-pastos git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11319 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp index 24a26c87213..09bb1dfca13 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 Z("Profile Information"); } @@ -37,6 +37,6 @@ namespace { RegisterOpt X("no-profile", "No Profile Information"); - // Declare that we implement the AliasAnalysis interface + // Declare that we implement the ProfileInfo interface RegisterAnalysisGroup Y; } // End of anonymous namespace