Commit 3094082d by Olivier Hainque Committed by Olivier Hainque

config.gcc (powerpc*-*-*spe*): Pick 8548 as the default with_cpu if we were…

config.gcc (powerpc*-*-*spe*): Pick 8548 as the default with_cpu if we were configured for an e500v2 target...

2017-10-16  Olivier Hainque  <hainque@adacore.com>

	* gcc/config.gcc (powerpc*-*-*spe*): Pick 8548 as the default
	with_cpu if we were configured for an e500v2 target cpu name.

From-SVN: r253789
parent 39920b04
2017-10-16 Olivier Hainque <hainque@adacore.com>
* gcc/config.gcc (powerpc*-*-*spe*): Pick 8548 as the default
with_cpu if we were configured for an e500v2 target cpu name.
2017-10-16 Thomas Preud'homme <thomas.preudhomme@arm.com>
* config/arm/arm-cpus.in (cortex-m33): Add nodsp option.
......@@ -3437,11 +3437,18 @@ if test x$with_cpu = x ; then
esac
;;
powerpc*-*-*spe*)
# For SPE, start with 8540, then upgrade to 8548 if
# --enable-e500-double was requested explicitly or if we were
# configured for e500v2.
with_cpu=8540
if test x$enable_e500_double = xyes; then
with_cpu=8548
else
with_cpu=8540
fi
with_cpu=8548
fi
case ${target_noncanonical} in
e500v2*)
with_cpu=8548
;;
esac
;;
sparc*-*-*)
case ${target} in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment