diff options
Diffstat (limited to 'include/llvm/CodeGen/DFAPacketizer.h')
-rw-r--r-- | include/llvm/CodeGen/DFAPacketizer.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/DFAPacketizer.h b/include/llvm/CodeGen/DFAPacketizer.h index 933e6e0cc4..0a11e0cfe4 100644 --- a/include/llvm/CodeGen/DFAPacketizer.h +++ b/include/llvm/CodeGen/DFAPacketizer.h @@ -49,8 +49,8 @@ private: void ReadTable(unsigned int state); public: - DFAPacketizer(const InstrItineraryData* I, const int (*SIT)[2], - const unsigned* SET); + 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::MCInstrDesc* MID); + 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::MCInstrDesc* MID); + 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::MachineInstr* MI); + 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::MachineInstr* MI); + void reserveResources(llvm::MachineInstr *MI); }; } |