reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/ELF/SymbolTable.cpp
  123       if (!sym->isDefined() && !sym->isCommon())
  135     if (b->isDefined() || b->isCommon())
  152     if ((sym->isDefined() || sym->isCommon()) && m.match(sym->getName()))
tools/lld/ELF/Symbols.cpp
  307   else if (sym->isCommon())
  520   assert(other->isDefined() || other->isCommon());
  522   if (!isDefined() && !isCommon())
  534   if (isCommon() && other->isCommon()) {
  534   if (isCommon() && other->isCommon()) {
  540   if (isCommon()) {
  546   if (other->isCommon()) {
tools/lld/ELF/Symbols.h
  328   static bool classof(const Symbol *s) { return s->isCommon(); }