From b16799681930016c6df3adc26c667ad55975f959 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 27 May 2015 14:55:09 +0000 Subject: [PATCH] Delete dead code. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238330 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCSection.h | 4 ---- lib/MC/MCSection.cpp | 4 ---- 2 files changed, 8 deletions(-) diff --git a/include/llvm/MC/MCSection.h b/include/llvm/MC/MCSection.h index 7f9d976b959..a085d129c82 100644 --- a/include/llvm/MC/MCSection.h +++ b/include/llvm/MC/MCSection.h @@ -93,10 +93,6 @@ public: return const_cast(this)->rend(); } - size_t size() const; - - bool empty() const; - void dump(); /// @} diff --git a/lib/MC/MCSection.cpp b/lib/MC/MCSection.cpp index 91df312689c..adfc6b35abb 100644 --- a/lib/MC/MCSection.cpp +++ b/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(); } -- 2.34.1