From 0d2d871e80f3367b203e57dea3cfa9967e705abc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 16 Apr 2003 20:30:02 +0000 Subject: [PATCH] Revert modulo scheduling change that should be part of the modulo-sched pass itself, not part of the Instruction class. llvm-svn: 5787 --- llvm/include/llvm/Instruction.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/llvm/include/llvm/Instruction.h b/llvm/include/llvm/Instruction.h index 56f4ebf3aac2..5f61b2d41087 100644 --- a/llvm/include/llvm/Instruction.h +++ b/llvm/include/llvm/Instruction.h @@ -23,8 +23,6 @@ class Instruction : public User { friend class SymbolTableListTraits >; void setParent(BasicBlock *P); -private: - Instruction* cln; //the newest cloned instruction protected: unsigned iType; // InstructionType: The opcode of the instruction @@ -44,9 +42,7 @@ public: /// * The instruction has no name /// virtual Instruction *clone() const = 0; - Instruction * getClone(){return cln;} - void setClone(Instruction* _cln){cln=_cln;} - void clearClone(){cln=NULL;} + // Accessor methods... // inline const BasicBlock *getParent() const { return Parent; } -- GitLab