Skip to content

Commit 2b21695

Browse files
committed
Delete dead code. NFC.
llvm-svn: 238330
1 parent f59264f commit 2b21695

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

llvm/include/llvm/MC/MCSection.h

-4
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ class MCSectionData {
9393
return const_cast<MCSectionData *>(this)->rend();
9494
}
9595

96-
size_t size() const;
97-
98-
bool empty() const;
99-
10096
void dump();
10197

10298
/// @}

llvm/lib/MC/MCSection.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,3 @@ MCSectionData::reverse_iterator MCSectionData::rbegin() {
105105
MCSectionData::reverse_iterator MCSectionData::rend() {
106106
return Fragments.rend();
107107
}
108-
109-
size_t MCSectionData::size() const { return Fragments.size(); }
110-
111-
bool MCSectionData::empty() const { return Fragments.empty(); }

0 commit comments

Comments
 (0)