2005-10-28 Paul Brook <paul@codesourcery.com>

* config/tc-arm.c (aeabi_set_public_attributes): Use selected_cpu
	instead of mcpu_cpu_opt.
This commit is contained in:
Paul Brook 2005-10-28 00:50:03 +00:00
parent b2efcd3652
commit 2e10c237f6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-10-28 Paul Brook <paul@codesourcery.com>
* config/tc-arm.c (aeabi_set_public_attributes): Use selected_cpu
instead of mcpu_cpu_opt.
2005-10-27 Sterling Augustine <sterling@tensilica.com>
* config/tc-xtensa.c (find_vinsn_conflicts): Change error messages to

View File

@ -13274,7 +13274,7 @@ aeabi_set_public_attributes (void)
/* Choose the architecture based on the capabilities of the requested cpu
(if any) and/or the instructions actually used. */
flags = mcpu_cpu_opt | arm_arch_used | thumb_arch_used;
flags = selected_cpu | mfpu_opt | arm_arch_used | thumb_arch_used;
if (flags & ARM_EXT_V6T2)
arch = 8;
else if (flags & ARM_EXT_V6Z)