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

References

tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
  282   EXPECT_TRUE(sect1.segmentName.equals("__TEXT"));
  283   EXPECT_TRUE(sect1.sectionName.equals("__text"));
  284   EXPECT_EQ((uint32_t)(sect1.type), (uint32_t)(llvm::MachO::S_REGULAR));
  285   EXPECT_EQ((uint32_t)(sect1.attributes),
  288   EXPECT_EQ((uint16_t)sect1.alignment, 1U);
  289   EXPECT_EQ((uint64_t)sect1.address, 0x0ULL);
  290   EXPECT_EQ(sect1.content.size(), 22UL);
  291   EXPECT_EQ((int)(sect1.content[0]), 0x55);
  292   EXPECT_EQ((int)(sect1.content[1]), 0x48);
  293   EXPECT_EQ(sect1.relocations.size(), 2UL);
  294   const Relocation& reloc1 = sect1.relocations[0];
  303   const Relocation& reloc2 = sect1.relocations[1];