diff options
author | Przemyslaw Wirkus <przemyslaw.wirkus@arm.com> | 2020-11-16 20:26:29 +0000 |
---|---|---|
committer | Przemyslaw Wirkus <przemyslaw.wirkus@arm.com> | 2020-11-16 20:28:14 +0000 |
commit | 1bbda94fe0174714e296335e7cc744b5fb618525 (patch) | |
tree | fd0d2e635175fe874c31456517ffe5ec051470b6 /bfd/cpu-arm.c | |
parent | 119e99bb7f5059ed31e574f0ceda8fbe9951403b (diff) | |
download | gdb-1bbda94fe0174714e296335e7cc744b5fb618525.zip gdb-1bbda94fe0174714e296335e7cc744b5fb618525.tar.gz gdb-1bbda94fe0174714e296335e7cc744b5fb618525.tar.bz2 |
arm: Add support for Cortex-A78C
This patch adds support for -mcpu=cortex-a78c command line option.
For more information about this processor, see [0]:
[0] https://developer.arm.com/ip-products/processors/cortex-a/cortex-a78c
Diffstat (limited to 'bfd/cpu-arm.c')
-rw-r--r-- | bfd/cpu-arm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/cpu-arm.c b/bfd/cpu-arm.c index 76a8f9a..73eef18 100644 --- a/bfd/cpu-arm.c +++ b/bfd/cpu-arm.c @@ -152,6 +152,7 @@ processors[] = { bfd_mach_arm_8, "cortex-a77" }, { bfd_mach_arm_8, "cortex-a78" }, { bfd_mach_arm_8, "cortex-a78ae" }, + { bfd_mach_arm_8, "cortex-a78c" }, { bfd_mach_arm_6SM, "cortex-m0" }, { bfd_mach_arm_6SM, "cortex-m0plus" }, { bfd_mach_arm_6SM, "cortex-m1" }, |