[llvm] r188885 - Add Mach-O entry_point_command declaration.

David Blaikie dblaikie at gmail.com
Wed Aug 21 10:30:09 PDT 2013


On Wed, Aug 21, 2013 at 12:28 AM, Ahmed Bougacha
<ahmed.bougacha at gmail.com> wrote:
> 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.

Patch lacks context/usage - should be rolled up to whatever code
required this type.

>
> 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 {
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits



More information about the llvm-commits mailing list