diff options
Diffstat (limited to 'include/lld/Core/SymbolTable.h')
-rw-r--r-- | include/lld/Core/SymbolTable.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/lld/Core/SymbolTable.h b/include/lld/Core/SymbolTable.h index db610ad14066..ba4951e5bd13 100644 --- a/include/lld/Core/SymbolTable.h +++ b/include/lld/Core/SymbolTable.h @@ -46,22 +46,12 @@ public: /// @brief add atom to symbol table bool add(const AbsoluteAtom &); - /// @brief checks if name is in symbol table and if so atom is not - /// UndefinedAtom - bool isDefined(StringRef sym); - /// @brief returns atom in symbol table for specified name (or nullptr) const Atom *findByName(StringRef sym); /// @brief returns vector of remaining UndefinedAtoms std::vector<const UndefinedAtom *> undefines(); - /// returns vector of tentative definitions - std::vector<StringRef> tentativeDefinitions(); - - /// @brief add atom to replacement table - void addReplacement(const Atom *replaced, const Atom *replacement); - /// @brief if atom has been coalesced away, return replacement, else return atom const Atom *replacement(const Atom *); |