[llvm] r212054 - Add the -arch flag support to llvm-nm to select the slice out of a Mach-O
Reid Kleckner
rnk at google.com
Mon Jun 30 13:21:17 PDT 2014
On Mon, Jun 30, 2014 at 11:45 AM, Kevin Enderby <enderby at apple.com> wrote:
>
> + case MachO::CPU_TYPE_POWERPC64:
> + case MachO::CPU_SUBTYPE_POWERPC_ALL:
> + return Triple("ppc64-apple-darwin");
>
I think this case is supposed to be in the following switch. I
speculatively committed that change in r212057.
+ switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
> + default:
> + return Triple();
> + }
> + default:
> + return Triple();
> + }
> +}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140630/2a9e9de4/attachment.html>
More information about the llvm-commits
mailing list