diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-05-24 03:14:18 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-05-24 03:14:18 +0000 |
commit | bcee21b4912ae793b9e61c03872cceafed846d1d (patch) | |
tree | db70f23aa1982a9f3e139e0de249cdd06e64d010 /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 4da526425396e1f6ea2d0c1bf10d2d25c4f2fca2 (diff) | |
download | bcm5719-llvm-bcee21b4912ae793b9e61c03872cceafed846d1d.tar.gz bcm5719-llvm-bcee21b4912ae793b9e61c03872cceafed846d1d.zip |
Changed clone to be const.
Changed copy constructor to set parent, prev, and next pointers to null.
llvm-svn: 13706
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 401cd8b4172..8d2cc932b2e 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -78,6 +78,12 @@ MachineInstr::MachineInstr(const MachineInstr &MI) { //Add operands for(unsigned i=0; i < MI.getNumOperands(); ++i) operands.push_back(MachineOperand(MI.getOperand(i))); + + //Set parent, next, and prev to null + parent = 0; + prev = 0; + next = 0; + } @@ -89,7 +95,7 @@ MachineInstr::~MachineInstr() ///clone - Create a copy of 'this' instruction that is identical in ///all ways except the following: The instruction has no parent The ///instruction has no name -MachineInstr* MachineInstr::clone() { +MachineInstr* MachineInstr::clone() const { return new MachineInstr(*this); } |