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 4c5001cc9c
commit 79f91c595d
1 changed files with 4 additions and 3 deletions

View File

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