SPU ASMJIT: Disable 512 wide spu verification

- Apparantly this crashes every game.
This commit is contained in:
Malcolm Jestadt 2021-11-01 11:48:49 -04:00 committed by Ivan
parent b84e95d768
commit 37383f4217
1 changed files with 2 additions and 2 deletions

View File

@ -281,9 +281,9 @@ spu_function_t spu_recompiler::compile(spu_program&& _func)
c->vzeroupper();
}
}
else if (utils::has_avx512() && g_cfg.core.full_width_avx512)
else if (utils::has_avx512() && false)
{
// AVX-512 optimized check using 512-bit registers
// AVX-512 optimized check using 512-bit registers (disabled)
words_align = 64;
const u32 starta = start & -64;