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

Overridden By

tools/lld/include/lld/Core/Simple.h
  261   CanBeNull canBeNull() const override { return UndefinedAtom::canBeNullNever; }
tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
 1033     CanBeNull canBeNull() const override { return _canBeNull; }

References

tools/lld/lib/Core/Resolver.cpp
  412     if (undef->canBeNull() != UndefinedAtom::canBeNullNever)
tools/lld/lib/Core/SymbolTable.cpp
  184     bool sameCanBeNull = (existingUndef->canBeNull() == newUndef->canBeNull());
  184     bool sameCanBeNull = (existingUndef->canBeNull() == newUndef->canBeNull());
  188       useNew = (newUndef->canBeNull() < existingUndef->canBeNull());
  188       useNew = (newUndef->canBeNull() < existingUndef->canBeNull());
tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
 1004           _canBeNull(atom->canBeNull()) {}