diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-20 22:10:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-20 22:10:21 +0000 |
commit | eb3904bc25ec7840c3e9f02d051c83f308515657 (patch) | |
tree | 599d5387b654e7995ae75093bb8d5983ca645e1a /include/llvm/Target | |
parent | 33372a18c5e2d66c2b9c4cbe7361cce197bc63b5 (diff) | |
download | external_llvm-eb3904bc25ec7840c3e9f02d051c83f308515657.zip external_llvm-eb3904bc25ec7840c3e9f02d051c83f308515657.tar.gz external_llvm-eb3904bc25ec7840c3e9f02d051c83f308515657.tar.bz2 |
Delete redundant inline keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59754 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetInstrItineraries.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetInstrItineraries.h b/include/llvm/Target/TargetInstrItineraries.h index 39eb4e0..1a5f46b 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; } |