Revert disabling AVX path in SPU verification.

It was experimental and builds for tests are available in history.
This commit is contained in:
Nekotekina 2019-04-16 23:16:47 +03:00
parent 9060177dbd
commit 52c589ed3d

View file

@ -288,7 +288,7 @@ bool spu_recompiler::compile(u64 last_reset_count, const std::vector<u32>& func)
c->jnz(label_diff); c->jnz(label_diff);
c->vzeroupper(); c->vzeroupper();
} }
else if (0 && utils::has_512()) else if (utils::has_512())
{ {
// AVX-512 optimized check using 256-bit registers // AVX-512 optimized check using 256-bit registers
words_align = 32; words_align = 32;
@ -410,7 +410,7 @@ bool spu_recompiler::compile(u64 last_reset_count, const std::vector<u32>& func)
c->vzeroupper(); c->vzeroupper();
} }
else if (0 && utils::has_avx()) else if (utils::has_avx())
{ {
// Mainstream AVX // Mainstream AVX
words_align = 32; words_align = 32;