From 49ded53def53ae60926433b924db9525aae1e631 Mon Sep 17 00:00:00 2001 From: Tamar Christina Date: Thu, 15 Feb 2018 17:08:14 +0000 Subject: Fix AArch32 build attributes for Armv8.4-A. The build attribute number for Armv8.4-A is currently incorrectly set to that of Armv8-M. This patch fixes that by setting it as part of the Armv8-A family and adds a test for it. gas/ 2018-02-15 Tamar Christina * config/tc-arm.c (cpu_arch_ver): Renumber ARM_ARCH_V8_4A. * testsuite/gas/arm/attr-march-armv8_4-a.d: New. --- gas/config/tc-arm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gas/config') diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 7a5c02b..cac4ed9 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -26941,7 +26941,7 @@ static const cpu_arch_ver_table cpu_arch_ver[] = {16, ARM_ARCH_V8M_BASE}, {17, ARM_ARCH_V8M_MAIN}, {15, ARM_ARCH_V8R}, - {16, ARM_ARCH_V8_4A}, + {14, ARM_ARCH_V8_4A}, {-1, ARM_ARCH_NONE} }; -- cgit v1.1