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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
  343     f.arch = lld::MachOLinkingContext::arch_armv7;
  344     f.fileType = MH_OBJECT;
  345     f.flags = MH_SUBSECTIONS_VIA_SYMBOLS;
  346     f.os = lld::MachOLinkingContext::OS::macOSX;
  347     f.sections.resize(1);
  348     Section& text = f.sections.front();
  375     f.globalSymbols.push_back(makeThumbSymbol("_foo", 0x00));
  376     f.globalSymbols.push_back(makeThumbSymbol("_foo2", 0x10));
  377     f.undefinedSymbols.push_back(makeUndefSymbol("_bar"));
  382     llvm::Error ec2 = writeBinary(f, tmpFl);