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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  526   EXPECT_EQ(f->arch, lld::MachOLinkingContext::arch_armv7);
  527   EXPECT_EQ((int)(f->fileType), MH_OBJECT);
  528   EXPECT_EQ((int)(f->flags), MH_SUBSECTIONS_VIA_SYMBOLS);
  529   EXPECT_EQ(f->sections.size(), 2UL);
  530   const Section& text = f->sections[0];
  575   const Section& cstring = f->sections[1];
  589   EXPECT_EQ(f->localSymbols.size(), 0UL);
  590   EXPECT_EQ(f->globalSymbols.size(), 1UL);
  591   const Symbol& mainLabel = f->globalSymbols[0];
  597   EXPECT_EQ(f->undefinedSymbols.size(), 1UL);
  598   const Symbol& printfLabel = f->undefinedSymbols[0];