diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-29 18:12:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-29 18:12:52 +0000 |
commit | f3e3247429ef14ebdac1769ba6b460c3ebcbcfdb (patch) | |
tree | b0bbb10f75388ab6b28b80a03c0a2f124813ed0f /include/llvm | |
parent | 51176ea54a4db384f91064323d97e40be8273ad8 (diff) | |
download | external_llvm-f3e3247429ef14ebdac1769ba6b460c3ebcbcfdb.zip external_llvm-f3e3247429ef14ebdac1769ba6b460c3ebcbcfdb.tar.gz external_llvm-f3e3247429ef14ebdac1769ba6b460c3ebcbcfdb.tar.bz2 |
Remove analysis namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Analysis/InstForest.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/llvm/Analysis/InstForest.h b/include/llvm/Analysis/InstForest.h index 68f7142..6e19c37 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 <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 |