Lines Matching full:vmc
874 MachO::version_min_command VMC = Obj->getVersionMinLoadCommand(Load);
876 W.printNumber("Size", VMC.cmdsize);
878 Version = utostr(MachOObjectFile::getVersionMinMajor(VMC, false)) + "." +
879 utostr(MachOObjectFile::getVersionMinMinor(VMC, false));
880 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, false);
882 Version += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, false));
885 if (VMC.sdk == 0)
888 SDK = utostr(MachOObjectFile::getVersionMinMajor(VMC, true)) + "." +
889 utostr(MachOObjectFile::getVersionMinMinor(VMC, true));
890 uint32_t Update = MachOObjectFile::getVersionMinUpdate(VMC, true);
892 SDK += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, true));