forked from OSchip/llvm-project
MachO: Comment fields in the version_min load command.
llvm-svn: 204189
This commit is contained in:
parent
4c5001cc9c
commit
79f91c595d
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue