Fix copy-and-pastos

llvm-svn: 11319
This commit is contained in:
Chris Lattner 2004-02-11 06:10:18 +00:00
parent f7a5d9874c
commit b8263bb809
1 changed files with 2 additions and 2 deletions

View 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