From f3e3247429ef14ebdac1769ba6b460c3ebcbcfdb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 29 Apr 2002 18:12:52 +0000 Subject: [PATCH] Remove analysis namespace git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2399 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/InstForest.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/llvm/Analysis/InstForest.h b/include/llvm/Analysis/InstForest.h index 68f71420a85..6e19c3745a5 100644 --- a/include/llvm/Analysis/InstForest.h +++ b/include/llvm/Analysis/InstForest.h @@ -16,15 +16,13 @@ #include "llvm/Instruction.h" #include "llvm/BasicBlock.h" +#include "llvm/Function.h" #include "Support/Tree.h" #include -namespace analysis { - template class InstTreeNode; template class InstForest; - //===----------------------------------------------------------------------===// // Class InstTreeNode //===----------------------------------------------------------------------===// @@ -287,8 +285,5 @@ InstTreeNode::InstTreeNode(InstForest &IF, Value *V, getTreeData().first.second = InstructionNode; } -} // End namespace analysis - - #endif