diff options
author | Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> | 2014-03-28 13:43:21 +0000 |
---|---|---|
committer | Ramana Radhakrishnan <ramana@gcc.gnu.org> | 2014-03-28 13:43:21 +0000 |
commit | 7ac84c02185ff347e4cc67541787ed126885202d (patch) | |
tree | e02eae1364f7b7e3c18cf037cd527cf89d1843c2 /gcc | |
parent | bd302a183af5190fb504174099a9085c3859bc93 (diff) | |
download | gcc-7ac84c02185ff347e4cc67541787ed126885202d.zip gcc-7ac84c02185ff347e4cc67541787ed126885202d.tar.gz gcc-7ac84c02185ff347e4cc67541787ed126885202d.tar.bz2 |
Fix A12 multilib rule.
This affects only arm-none-eabi targets and those using t-aprofile in
their multilib lists. The problem here is that when the A12 support
was added, we mistakenly added this to the MULTILIB_MATCHES rule for
the A15 rather than putting out a separate line for this.
Fixed thusly and verified that the correct multilibs are now chosen.
* config/arm/t-aprofile (MULTILIB_MATCHES): Correct A12 rule.
From-SVN: r208896
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/t-aprofile | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82f387c..c51f8e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-03-28 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> + + * config/arm/t-aprofile (MULTILIB_MATCHES): Correct A12 rule. + 2014-03-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> * config/rs6000/rs6000.c (fusion_gpr_load_p): Refuse optimization diff --git a/gcc/config/arm/t-aprofile b/gcc/config/arm/t-aprofile index b968711..ff9e2e1 100644 --- a/gcc/config/arm/t-aprofile +++ b/gcc/config/arm/t-aprofile @@ -81,7 +81,8 @@ MULTILIB_EXCEPTIONS += *march=armv7ve/*mfpu=neon-fp-armv8* MULTILIB_MATCHES += march?armv7-a=mcpu?cortex-a8 MULTILIB_MATCHES += march?armv7-a=mcpu?cortex-a9 MULTILIB_MATCHES += march?armv7-a=mcpu?cortex-a5 -MULTILIB_MATCHES += march?armv7ve=mcpu?cortex-a15=mcpu?cortex-a12 +MULTILIB_MATCHES += march?armv7ve=mcpu?cortex-a15 +MULTILIB_MATCHES += march?armv7ve=mcpu?cortex-a12 MULTILIB_MATCHES += march?armv7ve=mcpu?cortex-a15.cortex-a7 MULTILIB_MATCHES += march?armv8-a=mcpu?cortex-a53 MULTILIB_MATCHES += march?armv8-a=mcpu?cortex-a57 |