summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-02 22:07:37 +0000
committerChris Lattner <sabre@nondot.org>2003-06-02 22:07:37 +0000
commitbefbece2c6053d9fcaec2bedab56e84e75439d71 (patch)
treeb0597da960edbcc59be88edfc08fc3d905d2a214
parenta0a3ef8d21d8cfb94d7ee86b66877eeff07a21ae (diff)
downloadbcm5719-llvm-befbece2c6053d9fcaec2bedab56e84e75439d71.tar.gz
bcm5719-llvm-befbece2c6053d9fcaec2bedab56e84e75439d71.zip
Remove NonCopyable base class to clean up doxygen output
llvm-svn: 6551
-rw-r--r--llvm/include/llvm/CodeGen/MachineInstr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineInstr.h b/llvm/include/llvm/CodeGen/MachineInstr.h
index 82fa75f6600..d93209d2871 100644
--- a/llvm/include/llvm/CodeGen/MachineInstr.h
+++ b/llvm/include/llvm/CodeGen/MachineInstr.h
@@ -11,7 +11,6 @@
#include "llvm/Target/MRegisterInfo.h"
#include "Support/Annotation.h"
-#include "Support/NonCopyable.h"
#include "Support/iterator"
#include <set>
class Value;
@@ -341,8 +340,7 @@ private:
// a CALL (if any), and return value of a RETURN.
//---------------------------------------------------------------------------
-class MachineInstr: public NonCopyable { // Disable copy operations
-
+class MachineInstr {
MachineOpCode opCode; // the opcode
unsigned opCodeFlags; // flags modifying instrn behavior
std::vector<MachineOperand> operands; // the operands
@@ -355,6 +353,8 @@ class MachineInstr: public NonCopyable { // Disable copy operations
// OperandComplete - Return true if it's illegal to add a new operand
bool OperandsComplete() const;
+ MachineInstr(const MachineInstr &); // DO NOT IMPLEMENT
+ void operator=(const MachineInstr&); // DO NOT IMPLEMENT
public:
MachineInstr(MachineOpCode Opcode, unsigned numOperands);
OpenPOWER on IntegriCloud