[llvm-commits] [llvm] r59754 - /llvm/trunk/include/llvm/Target/TargetInstrItineraries.h

Dan Gohman gohman at apple.com
Thu Nov 20 14:10:21 PST 2008


Author: djg
Date: Thu Nov 20 16:10:21 2008
New Revision: 59754

URL: http://llvm.org/viewvc/llvm-project?rev=59754&view=rev
Log:
Delete redundant inline keywords.

Modified:
    llvm/trunk/include/llvm/Target/TargetInstrItineraries.h

Modified: llvm/trunk/include/llvm/Target/TargetInstrItineraries.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetInstrItineraries.h?rev=59754&r1=59753&r2=59754&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Target/TargetInstrItineraries.h (original)
+++ llvm/trunk/include/llvm/Target/TargetInstrItineraries.h Thu Nov 20 16:10:21 2008
@@ -58,18 +58,18 @@
   
   /// 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;
   }





More information about the llvm-commits mailing list