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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  394   EXPECT_EQ(f->arch, lld::MachOLinkingContext::arch_x86);
  395   EXPECT_EQ((int)(f->fileType), MH_OBJECT);
  396   EXPECT_EQ((int)(f->flags), MH_SUBSECTIONS_VIA_SYMBOLS);
  397   EXPECT_EQ(f->sections.size(), 2UL);
  398   const Section& text = f->sections[0];
  434   const Section& cstring = f->sections[1];
  448   EXPECT_EQ(f->localSymbols.size(), 0UL);
  449   EXPECT_EQ(f->globalSymbols.size(), 1UL);
  450   const Symbol& mainLabel = f->globalSymbols[0];
  456   EXPECT_EQ(f->undefinedSymbols.size(), 1UL);
  457   const Symbol& printfLabel = f->undefinedSymbols[0];