[llvm] r188885 - Add Mach-O entry_point_command declaration.
Ahmed Bougacha
ahmed.bougacha at gmail.com
Wed Aug 21 00:28:40 PDT 2013
Author: ab
Date: Wed Aug 21 02:28:40 2013
New Revision: 188885
URL: http://llvm.org/viewvc/llvm-project?rev=188885&view=rev
Log:
Add Mach-O entry_point_command declaration.
Modified:
llvm/trunk/include/llvm/Support/MachO.h
Modified: llvm/trunk/include/llvm/Support/MachO.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MachO.h?rev=188885&r1=188884&r2=188885&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MachO.h (original)
+++ llvm/trunk/include/llvm/Support/MachO.h Wed Aug 21 02:28:40 2013
@@ -621,6 +621,13 @@ namespace llvm {
uint32_t header_addr;
};
+ struct entry_point_command {
+ uint32_t cmd;
+ uint32_t cmdsize;
+ uint64_t entryoff;
+ uint64_t stacksize;
+ };
+
// Structs from <mach-o/fat.h>
struct fat_header {
More information about the llvm-commits
mailing list