diff options
author | Nick Clifton <nickc@redhat.com> | 2012-05-03 13:04:57 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-05-03 13:04:57 +0000 |
commit | a8acc5fb18af9d4b0da318218680534414325e13 (patch) | |
tree | ddfb438efe30f3cbb98fe76cf5ff105713254d7d /bfd/archures.c | |
parent | fec1623758b5b14d80c4a61e82568c65b71aa6d7 (diff) | |
download | gdb-a8acc5fb18af9d4b0da318218680534414325e13.zip gdb-a8acc5fb18af9d4b0da318218680534414325e13.tar.gz gdb-a8acc5fb18af9d4b0da318218680534414325e13.tar.bz2 |
Add support for Motorola XGATE embedded CPU
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index d38d806..b64e110 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -440,7 +440,9 @@ DESCRIPTION . bfd_arch_xc16x, {* Infineon's XC16X Series. *} .#define bfd_mach_xc16x 1 .#define bfd_mach_xc16xl 2 -.#define bfd_mach_xc16xs 3 +.#define bfd_mach_xc16xs 3 +. bfd_arch_xgate, {* Freescale XGATE *} +.#define bfd_mach_xgate 1 . bfd_arch_xtensa, {* Tensilica's Xtensa cores. *} .#define bfd_mach_xtensa 1 . bfd_arch_z80, @@ -574,6 +576,7 @@ extern const bfd_arch_info_type bfd_we32k_arch; extern const bfd_arch_info_type bfd_xstormy16_arch; extern const bfd_arch_info_type bfd_xtensa_arch; extern const bfd_arch_info_type bfd_xc16x_arch; +extern const bfd_arch_info_type bfd_xgate_arch; extern const bfd_arch_info_type bfd_z80_arch; extern const bfd_arch_info_type bfd_z8k_arch; @@ -653,6 +656,7 @@ static const bfd_arch_info_type * const bfd_archures_list[] = &bfd_xstormy16_arch, &bfd_xtensa_arch, &bfd_xc16x_arch, + &bfd_xgate_arch, &bfd_z80_arch, &bfd_z8k_arch, #endif |