More minor reorganizations

llvm-svn: 251
This commit is contained in:
Chris Lattner 2001-07-21 20:08:52 +00:00
parent 93547c3231
commit 68cf7a4626
1 changed files with 4 additions and 4 deletions

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)...