mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-10 08:40:41 +00:00
Fix PR885
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a5dfc835d4
commit
3dd965c954
@ -49,9 +49,8 @@ namespace {
|
||||
virtual bool runOnModule(Module &M);
|
||||
};
|
||||
|
||||
RegisterPass<LoaderPass>
|
||||
X("profile-loader", "Load profile information from llvmprof.out",
|
||||
PassInfo::Analysis|PassInfo::Optimization);
|
||||
RegisterOpt<LoaderPass>
|
||||
X("profile-loader", "Load profile information from llvmprof.out");
|
||||
|
||||
RegisterAnalysisGroup<ProfileInfo, LoaderPass> Y;
|
||||
} // End of anonymous namespace
|
||||
|
@ -162,10 +162,10 @@ public:
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
static RegisterPass<PrintModulePass>
|
||||
X("printm", "Print module to stderr",PassInfo::Analysis|PassInfo::Optimization);
|
||||
static RegisterPass<PrintFunctionPass>
|
||||
Y("print","Print function to stderr",PassInfo::Analysis|PassInfo::Optimization);
|
||||
static RegisterOpt<PrintModulePass>
|
||||
X("printm", "Print module to stderr");
|
||||
static RegisterOpt<PrintFunctionPass>
|
||||
Y("print","Print function to stderr");
|
||||
|
||||
static void WriteAsOperandInternal(std::ostream &Out, const Value *V,
|
||||
bool PrintName,
|
||||
|
Loading…
x
Reference in New Issue
Block a user