Remove analysis namespace
authorChris Lattner <sabre@nondot.org>
Mon, 29 Apr 2002 18:12:52 +0000 (18:12 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 29 Apr 2002 18:12:52 +0000 (18:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2399 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/InstForest.h

index 68f71420a852e6019e0c54d867c25c6ed57b1db2..6e19c3745a5a459b6fbb4e021b468b7df56f3fdd 100644 (file)
 
 #include "llvm/Instruction.h"
 #include "llvm/BasicBlock.h"
+#include "llvm/Function.h"
 #include "Support/Tree.h"
 #include <map>
 
-namespace analysis {
-
 template<class Payload> class InstTreeNode;
 template<class Payload> class InstForest;
 
-
 //===----------------------------------------------------------------------===//
 //  Class InstTreeNode
 //===----------------------------------------------------------------------===//
@@ -287,8 +285,5 @@ InstTreeNode<Payload>::InstTreeNode(InstForest<Payload> &IF, Value *V,
   getTreeData().first.second = InstructionNode;
 }
 
-}  // End namespace analysis
-
-
 #endif