mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
SPU ASMJIT: avoid AVX in verification (experimental)
This commit is contained in:
parent
b97a1aeca2
commit
136fc8cfe3
1 changed files with 2 additions and 2 deletions
|
@ -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 (utils::has_512())
|
else if (0 && 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 (utils::has_avx())
|
else if (0 && utils::has_avx())
|
||||||
{
|
{
|
||||||
// Mainstream AVX
|
// Mainstream AVX
|
||||||
words_align = 32;
|
words_align = 32;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue