From: Dan Gohman Date: Thu, 20 Nov 2008 22:10:21 +0000 (+0000) Subject: Delete redundant inline keywords. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=eb3904bc25ec7840c3e9f02d051c83f308515657;p=oota-llvm.git Delete redundant inline keywords. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59754 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetInstrItineraries.h b/include/llvm/Target/TargetInstrItineraries.h index 39eb4e0137e..1a5f46b1500 100644 --- a/include/llvm/Target/TargetInstrItineraries.h +++ b/include/llvm/Target/TargetInstrItineraries.h @@ -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; }