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:
Dan Gohman 2008-11-20 22:10:21 +00:00
parent 33372a18c5
commit eb3904bc25

View File

@ -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;
}