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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
  156   fromBinary(tmpFl, bufferOwner, f2, "x86_64");
  158   EXPECT_EQ(lld::MachOLinkingContext::arch_x86_64, f2->arch);
  159   EXPECT_EQ(MH_OBJECT, f2->fileType);
  160   EXPECT_EQ(FileFlags(MH_SUBSECTIONS_VIA_SYMBOLS), f2->flags);
  162   EXPECT_TRUE(f2->localSymbols.empty());
  163   EXPECT_TRUE(f2->globalSymbols.empty());
  164   EXPECT_EQ(2UL, f2->undefinedSymbols.size());
  165   const Symbol& barUndef = f2->undefinedSymbols[0];
  169   const Symbol& tbarUndef = f2->undefinedSymbols[1];
  174   EXPECT_EQ(1UL, f2->sections.size());
  175   const Section& text = f2->sections[0];