diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-19 07:52:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-19 07:52:25 +0000 |
commit | 81e26ce1dad4f9093ee60aaa09cee839d02d9a91 (patch) | |
tree | a457c3fa3ccfe4b652e7766473087a1e137ad84d | |
parent | 74de8b1b26b12fda3364382946e519a2e37b6709 (diff) |
Delete 4 methods, make clients use hte mark* methods directly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14999 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 97c60f9e3a..890a2930d2 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -322,7 +322,6 @@ public: friend std::ostream& operator<<(std::ostream& os, const MachineOperand& mop); -private: /// markHi32, markLo32, etc. - These methods must be accessed via /// corresponding methods in MachineInstr. These methods are deprecated /// and only used by the SPARC v9 back-end. @@ -332,6 +331,7 @@ private: void markHi64() { flags |= HIFLAG64; } void markLo64() { flags |= LOFLAG64; } +private: /// setRegForValue - Replaces the Value with its corresponding physical /// register after register allocation is complete. This is deprecated /// and only used by the SPARC v9 back-end. @@ -664,12 +664,6 @@ public: unsigned substituteValue(const Value* oldVal, Value* newVal, bool defsOnly, bool notDefsAndUses, bool& someArgsWereIgnored); - - void setOperandHi32(unsigned i) { operands[i].markHi32(); } - void setOperandLo32(unsigned i) { operands[i].markLo32(); } - void setOperandHi64(unsigned i) { operands[i].markHi64(); } - void setOperandLo64(unsigned i) { operands[i].markLo64(); } - // SetRegForOperand - // SetRegForImplicitRef - |