diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-07-21 20:08:52 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-07-21 20:08:52 +0000 | 
| commit | 68cf7a4626397a9373f3ebcf9c37fabb1ca395a3 (patch) | |
| tree | ab50b2577982b116f2a6a0dfaa60070f72bd13ca | |
| parent | 93547c323147dab7683aa7c69e0296441495ce3a (diff) | |
| download | bcm5719-llvm-68cf7a4626397a9373f3ebcf9c37fabb1ca395a3.tar.gz bcm5719-llvm-68cf7a4626397a9373f3ebcf9c37fabb1ca395a3.zip  | |
More minor reorganizations
llvm-svn: 251
| -rw-r--r-- | llvm/include/llvm/Instruction.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/Instruction.h b/llvm/include/llvm/Instruction.h index 54dcf603ef6..85f5c0f4296 100644 --- a/llvm/include/llvm/Instruction.h +++ b/llvm/include/llvm/Instruction.h @@ -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)...  | 

