From 7fdedf8a8e8f586cd943c17b16b2dc404b90d8db Mon Sep 17 00:00:00 2001 From: Olivier Hainque Date: Tue, 27 Oct 2020 13:16:11 +0000 Subject: [PATCH] Fix glitch on VX_CPU selection for E6500 Proper macro name is PPCE6500, not E6500. Introduced accidentally during a pre-commit minor rearrangement. 2020-10-27 Olivier Hainque gcc/ * config/rs6000/vxworks.h (CPP_SPEC): Fix macro definition for -mcpu=e6500. --- gcc/config/rs6000/vxworks.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/rs6000/vxworks.h b/gcc/config/rs6000/vxworks.h index 87ca3af..c5c3248 100644 --- a/gcc/config/rs6000/vxworks.h +++ b/gcc/config/rs6000/vxworks.h @@ -127,7 +127,7 @@ along with GCC; see the file COPYING3. If not see VX_MCPU(603, PPC603) ";" \ VX_MCPU(604, PPC604) ";" \ VX_MCPU(860, PPC860) ";" \ - VX_MCPU(e6500, E6500) ";" \ + VX_MCPU(e6500, PPCE6500) ";" \ VX_MCPU(8540, PPC85XX) ";" \ VX_MCPU(8548, PPC85XX) ";" \ VX_CPUDEF(PPC604) \ -- 2.7.4