Run MADV_DONTNEED after SSE check to fix 01103_check_cpu_instructions_at_startup

This commit is contained in:
Azat Khuzhin 2020-10-04 02:01:40 +03:00
parent caf3156fb7
commit 2a6874e065

View File

@ -343,10 +343,10 @@ struct Checker
{
Checker()
{
checkRequiredInstructions();
#ifdef __linux__
checkRequiredMadviseFlags();
#endif
checkRequiredInstructions();
}
} checker;