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

References

tools/lld/ELF/Config.h
  223   UnresolvedPolicy unresolvedSymbols;
tools/lld/ELF/Driver.cpp
  516 static UnresolvedPolicy getUnresolvedSymbolPolicy(opt::InputArgList &args) {
  517   UnresolvedPolicy errorOrWarn = args.hasFlag(OPT_error_unresolved_symbols,
  519                                      ? UnresolvedPolicy::ReportError
  520                                      : UnresolvedPolicy::Warn;
  528         return UnresolvedPolicy::Ignore;
  540         return UnresolvedPolicy::Ignore;
  548     return UnresolvedPolicy::Ignore;
tools/lld/ELF/Relocations.cpp
  853   if (config->unresolvedSymbols == UnresolvedPolicy::Ignore && canBeExternal)
  866       (config->unresolvedSymbols == UnresolvedPolicy::Warn && canBeExternal) ||
tools/lld/ELF/Symbols.cpp
  325       config->unresolvedSymbols == UnresolvedPolicy::Ignore)