summaryrefslogtreecommitdiff
path: root/bfd/cpu-aarch64.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2022-11-21 16:44:02 +0000
committerNick Clifton <nickc@redhat.com>2022-11-21 16:44:02 +0000
commit1a7e622b82fa621ab505dd911bc30c1efcb4a9b0 (patch)
tree6736a37fd2c9c46a1de07f4b847087e11af15797 /bfd/cpu-aarch64.c
parentb0b23e06c3a2e3b92d6f12d99650c7d1cc5d939c (diff)
downloadbinutils-gdb-1a7e622b82fa621ab505dd911bc30c1efcb4a9b0.tar.gz
Fix ARM and AArch64 assembler tests to work in a multi-arch environment.
PR 29764 gas * testsuite/gas/arm/cpu-cortex-a76ae.d: Add arm prefix to the -m option passed to objdump. * testsuite/gas/arm/cpu-cortex-a77.d: Likewise. * testsuite/gas/aarch64/cpu-cortex-a76ae.d: Add aarch64 prefix to the -m option passed to objdump. * testsuite/gas/aarch64/cpu-cortex-a77.d: Likewise. bfd * cpu-arm.c (scan): Accept machine names prefixed with "arm:". * cpu-aarch64.c (scan): Accept machine names prefixed with "aarch64:". bin * doc/binutils.texi (objdump): Note that the -m option supports the <architecture>:<machine> syntax.
Diffstat (limited to 'bfd/cpu-aarch64.c')
-rw-r--r--bfd/cpu-aarch64.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/cpu-aarch64.c b/bfd/cpu-aarch64.c
index eb88d0ef861..d51f2e3bde3 100644
--- a/bfd/cpu-aarch64.c
+++ b/bfd/cpu-aarch64.c
@@ -85,6 +85,15 @@ scan (const struct bfd_arch_info *info, const char *string)
if (strcasecmp (string, info->printable_name) == 0)
return true;
+ /* If there is a prefix of "aarch64:" then skip it. */
+ const char * colon;
+ if ((colon = strchr (string, ':')) != NULL)
+ {
+ if (strncasecmp (string, "aarch64", colon - string) != 0)
+ return false;
+ string = colon + 1;
+ }
+
/* Next check for a processor name instead of an Architecture name. */
for (i = sizeof (processors) / sizeof (processors[0]); i--;)
{