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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  269   EXPECT_EQ(f->arch, lld::MachOLinkingContext::arch_x86_64);
  270   EXPECT_EQ((int)(f->fileType), MH_OBJECT);
  271   EXPECT_EQ((int)(f->flags), MH_SUBSECTIONS_VIA_SYMBOLS);
  272   EXPECT_EQ(f->sections.size(), 2UL);
  273   const Section& text = f->sections[0];
  299   const Section& cstring = f->sections[1];
  313   EXPECT_EQ(f->localSymbols.size(), 1UL);
  314   const Symbol& strLabel = f->localSymbols[0];
  318   EXPECT_EQ(f->globalSymbols.size(), 1UL);
  319   const Symbol& mainLabel = f->globalSymbols[0];
  325   EXPECT_EQ(f->undefinedSymbols.size(), 1UL);
  326   const Symbol& printfLabel = f->undefinedSymbols[0];