Remove unused function.

llvm-svn: 231444
This commit is contained in:
Rui Ueyama 2015-03-06 01:44:07 +00:00
parent 03dd1082ad
commit 41ee2e3ff9
2 changed files with 0 additions and 7 deletions

View File

@ -61,9 +61,6 @@ public:
/// returns vector of tentative definitions
std::vector<StringRef> tentativeDefinitions();
/// @brief count of by-name entries in symbol table
unsigned int size();
/// @brief add atom to replacement table
void addReplacement(const Atom *replaced, const Atom *replacement);

View File

@ -362,10 +362,6 @@ bool SymbolTable::isCoalescedAway(const Atom *atom) {
return _replacedAtoms.count(atom) > 0;
}
unsigned int SymbolTable::size() {
return _nameTable.size();
}
std::vector<const UndefinedAtom *> SymbolTable::undefines() {
std::vector<const UndefinedAtom *> ret;
for (auto it : _nameTable) {