[llvm-commits] CVS: llvm/include/llvm/CodeGen/InstrForest.h

Chris Lattner lattner at cs.uiuc.edu
Tue Jun 3 10:30:02 PDT 2003


Changes in directory llvm/include/llvm/CodeGen:

InstrForest.h updated: 1.24 -> 1.25

---
Log message:

Remove noncopyable base class as it was making the doxygen docs harder to read


---
Diffs of the changes:

Index: llvm/include/llvm/CodeGen/InstrForest.h
diff -u llvm/include/llvm/CodeGen/InstrForest.h:1.24 llvm/include/llvm/CodeGen/InstrForest.h:1.25
--- llvm/include/llvm/CodeGen/InstrForest.h:1.24	Sat Aug 24 16:02:42 2002
+++ llvm/include/llvm/CodeGen/InstrForest.h	Tue Jun  3 10:29:12 2003
@@ -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 @@
 // 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,





More information about the llvm-commits mailing list