1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

MachO: Comment fields in the version_min load command.

llvm-svn: 204189
This commit is contained in:
Jim Grosbach 2014-03-18 22:08:58 +00:00
parent 536fb8893d
commit ed7f2e77fa

View File

@ -743,9 +743,10 @@ namespace llvm {
};
struct version_min_command {
uint32_t cmd;
uint32_t cmdsize;
uint32_t version;
uint32_t cmd; /* LC_VERSION_MIN_MACOSX or
LC_VERSION_MIN_IPHONEOS */
uint32_t cmdsize; /* sizeof(struct version_min_command) */
uint32_t version; /* X.Y.Z is encoded in nibbles xxxx.yy.zz */
uint32_t reserved;
};