More minor reorganizations
authorChris Lattner <sabre@nondot.org>
Sat, 21 Jul 2001 20:08:52 +0000 (20:08 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 21 Jul 2001 20:08:52 +0000 (20:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instruction.h

index 54dcf603ef6cae06edc24fff9967f04cea74699d..85f5c0f42968db4902bea74d7cce7973f38f379c 100644 (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)...