- The proper test is CPU_ENABLE_SSE and not CPU_ENABLED_SSE. This
effectively disabled the sse2_pagezero() code. Spotted by: bde
This commit is contained in:
parent
c13c04a426
commit
478042909d
@ -2366,7 +2366,7 @@ pagezero(void *page)
|
||||
{
|
||||
#if defined(I686_CPU)
|
||||
if (cpu_class == CPUCLASS_686) {
|
||||
#if defined(CPU_ENABLED_SSE)
|
||||
#if defined(CPU_ENABLE_SSE)
|
||||
if (cpu_feature & CPUID_SSE2)
|
||||
sse2_pagezero(page);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user