arch/x86: (Intel64) fix conditional assembly in locore.S

was ignoring the rest of the expression, though the effect was
harmless (including unreachable code in some builds).

Signed-off-by: Charles E. Youse <charles.youse@intel.com>
This commit is contained in:
Charles E. Youse 2019-09-30 12:18:28 -04:00 committed by Anas Nashif
commit 74e3717af6

View file

@ -14,7 +14,7 @@
.section .locore,"ax" .section .locore,"ax"
.code32 .code32
#ifdef CONFIG_SMP && (CONFIG_MP_NUM_CPUS > 1) #if defined(CONFIG_SMP) && (CONFIG_MP_NUM_CPUS > 1)
/* /*
* APs are sent here on startup, in real mode. This * APs are sent here on startup, in real mode. This