mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Delete redundant inline keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59754 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
33372a18c5
commit
eb3904bc25
@ -58,18 +58,18 @@ struct InstrItineraryData {
|
||||
|
||||
/// isEmpty - Returns true if there are no itineraries.
|
||||
///
|
||||
inline bool isEmpty() const { return Itineratries == 0; }
|
||||
bool isEmpty() const { return Itineratries == 0; }
|
||||
|
||||
/// begin - Return the first stage of the itinerary.
|
||||
///
|
||||
inline const InstrStage *begin(unsigned ItinClassIndx) const {
|
||||
const InstrStage *begin(unsigned ItinClassIndx) const {
|
||||
unsigned StageIdx = Itineratries[ItinClassIndx].First;
|
||||
return Stages + StageIdx;
|
||||
}
|
||||
|
||||
/// end - Return the last+1 stage of the itinerary.
|
||||
///
|
||||
inline const InstrStage *end(unsigned ItinClassIndx) const {
|
||||
const InstrStage *end(unsigned ItinClassIndx) const {
|
||||
unsigned StageIdx = Itineratries[ItinClassIndx].Last;
|
||||
return Stages + StageIdx;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user