From fbaed2e070edc74cd2bdf382a5ac0377a6f0596b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 29 Apr 2002 18:13:31 +0000 Subject: Remove InstForest from analysis namespace git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2401 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/analyze/analyze.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/analyze') diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp index e347b4331b..cd35a108d5 100644 --- a/tools/analyze/analyze.cpp +++ b/tools/analyze/analyze.cpp @@ -134,11 +134,11 @@ Pass *createPrintModulePass(const string &Message) { return new PrintModulePass(&std::cout); } -struct InstForest : public FunctionPass { +struct InstForestHelper : public FunctionPass { const char *getPassName() const { return "InstForest Printer"; } void doit(Function *F) { - std::cout << analysis::InstForest(F); + std::cout << InstForest(F); } virtual void getAnalysisUsage(AnalysisUsage &AU) const { @@ -271,7 +271,7 @@ struct { { print , createPrintFunctionPass }, { intervals , New }, { loops , New }, - { instforest , Create > }, + { instforest , Create > }, { indvars , Create > }, { exprs , Create > }, -- cgit v1.2.3