aboutsummaryrefslogtreecommitdiff
path: root/binutils/od-macho.c
diff options
context:
space:
mode:
authorTristan Gingold <tristan.gingold@adacore.com>2014-03-26 10:40:06 +0100
committerTristan Gingold <tristan.gingold@adacore.com>2014-03-26 16:08:14 +0100
commitd80285301a6a55f4f3bb4fbf4df1d20d91b0ee24 (patch)
tree66146a3205788b7a0670c39d5642ead6bd9e9955 /binutils/od-macho.c
parentf6c7c3e8b742de0a5926e6a2c268f5803062b556 (diff)
downloadgdb-d80285301a6a55f4f3bb4fbf4df1d20d91b0ee24.zip
gdb-d80285301a6a55f4f3bb4fbf4df1d20d91b0ee24.tar.gz
gdb-d80285301a6a55f4f3bb4fbf4df1d20d91b0ee24.tar.bz2
Mach-O: Add BFD_MACH_O_CPU_TYPE_ARM64.
include/mach-o/ * loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64. bfd/ * mach-o.c (bfd_mach_o_convert_architecture): Add BFD_MACH_O_CPU_TYPE_ARM64. binutils/ * od-macho.c (bfd_mach_o_cpu_name): Add BFD_MACH_O_CPU_TYPE_ARM64.
Diffstat (limited to 'binutils/od-macho.c')
-rw-r--r--binutils/od-macho.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/binutils/od-macho.c b/binutils/od-macho.c
index 3cd2cf0..6f88112 100644
--- a/binutils/od-macho.c
+++ b/binutils/od-macho.c
@@ -99,6 +99,7 @@ static const bfd_mach_o_xlat_name bfd_mach_o_cpu_name[] =
{ "powerpc", BFD_MACH_O_CPU_TYPE_POWERPC },
{ "powerpc_64", BFD_MACH_O_CPU_TYPE_POWERPC_64 },
{ "x86_64", BFD_MACH_O_CPU_TYPE_X86_64 },
+ { "arm64", BFD_MACH_O_CPU_TYPE_ARM64 },
{ NULL, 0}
};