use space star instead of star space
[oota-llvm.git] / include / llvm / CodeGen / DFAPacketizer.h
index 933e6e0cc4b5894fc56d5b127772a4f3e6734ee8..0a11e0cfe42a979d2914060c851004e13e39fd1e 100644 (file)
@@ -49,8 +49,8 @@ private:
   void ReadTable(unsigned int state);
 
 public:
-  DFAPacketizer(const InstrItineraryDataI, const int (*SIT)[2],
-                const unsignedSET);
+  DFAPacketizer(const InstrItineraryData *I, const int (*SIT)[2],
+                const unsigned *SET);
 
   // Reset the current state to make all resources available.
   void clearResources() {
@@ -59,19 +59,19 @@ public:
 
   // canReserveResources - Check if the resources occupied by a MCInstrDesc
   // are available in the current state.
-  bool canReserveResources(const llvm::MCInstrDescMID);
+  bool canReserveResources(const llvm::MCInstrDesc *MID);
 
   // reserveResources - Reserve the resources occupied by a MCInstrDesc and
   // change the current state to reflect that change.
-  void reserveResources(const llvm::MCInstrDescMID);
+  void reserveResources(const llvm::MCInstrDesc *MID);
 
   // canReserveResources - Check if the resources occupied by a machine
   // instruction are available in the current state.
-  bool canReserveResources(llvm::MachineInstrMI);
+  bool canReserveResources(llvm::MachineInstr *MI);
 
   // reserveResources - Reserve the resources occupied by a machine
   // instruction and change the current state to reflect that change.
-  void reserveResources(llvm::MachineInstrMI);
+  void reserveResources(llvm::MachineInstr *MI);
 };
 }