aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/DFAPacketizer.h
diff options
context:
space:
mode:
authorSebastian Pop <spop@codeaurora.org>2011-12-06 17:34:16 +0000
committerSebastian Pop <spop@codeaurora.org>2011-12-06 17:34:16 +0000
commit464f3a332f81364ee09794f9502f0b25671149c6 (patch)
tree117665567fcaf441037e3a829d07d28b00c8c87f /include/llvm/CodeGen/DFAPacketizer.h
parentf6f77e90a18142e196cbc2a6ee87cdf7461b17df (diff)
use space star instead of star space
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/DFAPacketizer.h')
-rw-r--r--include/llvm/CodeGen/DFAPacketizer.h12
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);
};
}