More minor reorganizations

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-07-21 20:08:52 +00:00
parent cfad5df977
commit 87bdcaf2b8

View File

@ -38,10 +38,6 @@ public:
//
virtual Instruction *clone() const = 0;
// Add a machine instruction used to implement this instruction
//
void addMachineInstruction(MachineInstr* minstr);
// Accessor methods...
//
inline const BasicBlock *getParent() const { return Parent; }
@ -55,6 +51,10 @@ public:
return *machineInstrVec;
}
// Add a machine instruction used to implement this instruction
//
void addMachineInstruction(MachineInstr* minstr);
// ---------------------------------------------------------------------------
// Subclass classification... getInstType() returns a member of
// one of the enums that is coming soon (down below)...