Searched refs:VMC (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp784 MachO::version_min_command VMC = Obj->getVersionMinLoadCommand(Load); local
786 W.printNumber("Size", VMC.cmdsize);
788 Version = utostr(MachOObjectFile::getVersionMinMajor(VMC, false)) + "." +
789 utostr(MachOObjectFile::getVersionMinMinor(VMC, false));
790 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, false);
792 Version += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, false));
795 if (VMC.sdk == 0)
798 SDK = utostr(MachOObjectFile::getVersionMinMajor(VMC, true)) + "." +
799 utostr(MachOObjectFile::getVersionMinMinor(VMC, true));
800 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, tru
[all...]

Completed in 100 milliseconds