summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSebastian Pop <spop@codeaurora.org>2011-12-06 17:34:11 +0000
committerSebastian Pop <spop@codeaurora.org>2011-12-06 17:34:11 +0000
commitf6f77e90a18142e196cbc2a6ee87cdf7461b17df (patch)
tree8baf3abc8559e215c0d9f43688f9aa945c594640 /include
parent88c09143b6af07ed7b16381885a03c4b10886f96 (diff)
downloadllvm-f6f77e90a18142e196cbc2a6ee87cdf7461b17df.tar.gz
llvm-f6f77e90a18142e196cbc2a6ee87cdf7461b17df.tar.bz2
llvm-f6f77e90a18142e196cbc2a6ee87cdf7461b17df.tar.xz
add missing point at the end of sentences
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145943 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/DFAPacketizer.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/CodeGen/DFAPacketizer.h b/include/llvm/CodeGen/DFAPacketizer.h
index 38a899fa45..933e6e0cc4 100644
--- a/include/llvm/CodeGen/DFAPacketizer.h
+++ b/include/llvm/CodeGen/DFAPacketizer.h
@@ -42,35 +42,35 @@ private:
const int (*DFAStateInputTable)[2];
const unsigned *DFAStateEntryTable;
- // CachedTable is a map from <FromState, Input> to ToState
+ // CachedTable is a map from <FromState, Input> to ToState.
DenseMap<UnsignPair, unsigned> CachedTable;
- // ReadTable - Read the DFA transition table and update CachedTable
+ // ReadTable - Read the DFA transition table and update CachedTable.
void ReadTable(unsigned int state);
public:
DFAPacketizer(const InstrItineraryData* I, const int (*SIT)[2],
const unsigned* SET);
- // Reset the current state to make all resources available
+ // Reset the current state to make all resources available.
void clearResources() {
CurrentState = 0;
}
// canReserveResources - Check if the resources occupied by a MCInstrDesc
- // are available in the current state
+ // are available in the current state.
bool canReserveResources(const llvm::MCInstrDesc* MID);
// reserveResources - Reserve the resources occupied by a MCInstrDesc and
- // change the current state to reflect that change
+ // change the current state to reflect that change.
void reserveResources(const llvm::MCInstrDesc* MID);
// canReserveResources - Check if the resources occupied by a machine
- // instruction are available in the current state
+ // instruction are available in the current state.
bool canReserveResources(llvm::MachineInstr* MI);
// reserveResources - Reserve the resources occupied by a machine
- // instruction and change the current state to reflect that change
+ // instruction and change the current state to reflect that change.
void reserveResources(llvm::MachineInstr* MI);
};
}