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

References

tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  393           sout.name  = &strings[sin->n_strx];
  394           sout.type = static_cast<NListType>(sin->n_type & (N_STAB|N_TYPE));
  395           sout.scope = (sin->n_type & (N_PEXT|N_EXT));
  396           sout.sect  = sin->n_sect;
  397           sout.desc  = sin->n_desc;
  398           sout.value = sin->n_value;
  400             f->stabsSymbols.push_back(sout);
  401           else if (sout.type == N_UNDF)
  402             f->undefinedSymbols.push_back(sout);
  404             f->globalSymbols.push_back(sout);
  406             f->localSymbols.push_back(sout);