mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Remove InstForest from analysis namespace
llvm-svn: 2401
This commit is contained in:
parent
cfc512e714
commit
9689364fee
@ -134,11 +134,11 @@ Pass *createPrintModulePass(const string &Message) {
|
|||||||
return new PrintModulePass(&std::cout);
|
return new PrintModulePass(&std::cout);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct InstForest : public FunctionPass {
|
struct InstForestHelper : public FunctionPass {
|
||||||
const char *getPassName() const { return "InstForest Printer"; }
|
const char *getPassName() const { return "InstForest Printer"; }
|
||||||
|
|
||||||
void doit(Function *F) {
|
void doit(Function *F) {
|
||||||
std::cout << analysis::InstForest<char>(F);
|
std::cout << InstForest<char>(F);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||||
@ -271,7 +271,7 @@ struct {
|
|||||||
{ print , createPrintFunctionPass },
|
{ print , createPrintFunctionPass },
|
||||||
{ intervals , New<FunctionPass, IntervalPartition> },
|
{ intervals , New<FunctionPass, IntervalPartition> },
|
||||||
{ loops , New<FunctionPass, LoopInfo> },
|
{ loops , New<FunctionPass, LoopInfo> },
|
||||||
{ instforest , Create<PrinterPass<InstForest> > },
|
{ instforest , Create<PrinterPass<InstForestHelper> > },
|
||||||
{ indvars , Create<PrinterPass<IndVars> > },
|
{ indvars , Create<PrinterPass<IndVars> > },
|
||||||
{ exprs , Create<PrinterPass<Exprs> > },
|
{ exprs , Create<PrinterPass<Exprs> > },
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user