diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-03 15:29:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-03 15:29:12 +0000 |
commit | 4ade9ed40ffef8a3ea44ae0a3bfc1150a952df51 (patch) | |
tree | e658f31cf1debc0bcbe9f1a85cbf3ee64529408f /include | |
parent | 17035c0edf5463fd9edb8496502f4c5a0dc1d7ab (diff) | |
download | external_llvm-4ade9ed40ffef8a3ea44ae0a3bfc1150a952df51.zip external_llvm-4ade9ed40ffef8a3ea44ae0a3bfc1150a952df51.tar.gz external_llvm-4ade9ed40ffef8a3ea44ae0a3bfc1150a952df51.tar.bz2 |
Remove noncopyable base class as it was making the doxygen docs harder to read
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6576 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/InstrForest.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/InstrForest.h b/include/llvm/CodeGen/InstrForest.h index 4ceca6e..d938112 100644 --- a/include/llvm/CodeGen/InstrForest.h +++ b/include/llvm/CodeGen/InstrForest.h @@ -20,7 +20,6 @@ #define LLVM_CODEGEN_INSTRFOREST_H #include "llvm/Instruction.h" -#include "Support/NonCopyable.h" #include "Support/HashExtras.h" class Constant; @@ -106,7 +105,9 @@ extern void printMatches (InstrTreeNode*); // instruction selection via BURG. //------------------------------------------------------------------------ -class InstrTreeNode : public NonCopyableV { +class InstrTreeNode { + InstrTreeNode(const InstrTreeNode &); // DO NOT IMPLEMENT + void operator=(const InstrTreeNode &); // DO NOT IMPLEMENT public: enum InstrTreeNodeType { NTInstructionNode, NTVRegListNode, |