diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-05-27 14:55:09 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-05-27 14:55:09 +0000 |
commit | 2b216959023dba8b93595140f312f042119c6547 (patch) | |
tree | 5b7efeb45569ffe02e73a9ecaef180afb6e491d1 | |
parent | f59264f4c785be7ad64cc4798db400252f47cf54 (diff) | |
download | bcm5719-llvm-2b216959023dba8b93595140f312f042119c6547.tar.gz bcm5719-llvm-2b216959023dba8b93595140f312f042119c6547.zip |
Delete dead code. NFC.
llvm-svn: 238330
-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(); } |