diff options
-rw-r--r-- | llvm/include/llvm/MC/MCSection.h | 4 | ||||
-rw-r--r-- | llvm/lib/MC/MCSection.cpp | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/llvm/include/llvm/MC/MCSection.h b/llvm/include/llvm/MC/MCSection.h index 7f9d976b959..a085d129c82 100644 --- a/llvm/include/llvm/MC/MCSection.h +++ b/llvm/include/llvm/MC/MCSection.h @@ -93,10 +93,6 @@ public: return const_cast<MCSectionData *>(this)->rend(); } - size_t size() const; - - bool empty() const; - void dump(); /// @} diff --git a/llvm/lib/MC/MCSection.cpp b/llvm/lib/MC/MCSection.cpp index 91df312689c..adfc6b35abb 100644 --- a/llvm/lib/MC/MCSection.cpp +++ b/llvm/lib/MC/MCSection.cpp @@ -105,7 +105,3 @@ MCSectionData::reverse_iterator MCSectionData::rbegin() { MCSectionData::reverse_iterator MCSectionData::rend() { return Fragments.rend(); } - -size_t MCSectionData::size() const { return Fragments.size(); } - -bool MCSectionData::empty() const { return Fragments.empty(); } |