Delete redundant inline keywords.
authorDan Gohman <gohman@apple.com>
Thu, 20 Nov 2008 22:10:21 +0000 (22:10 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 20 Nov 2008 22:10:21 +0000 (22:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59754 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetInstrItineraries.h

index 39eb4e0137e70db93044dccef57d7cc40b184e14..1a5f46b1500ff8de43fe89a3bbda00dce216770b 100644 (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;
   }