mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
Remove constexpr from ppu/spu decoders.
We don't need them at compile time (yet). But can reduce compile time and complexity.
This commit is contained in:
parent
b382d3b3e9
commit
65c04e4ddd
10 changed files with 28 additions and 28 deletions
|
@ -3,9 +3,9 @@
|
|||
#include "SPUAnalyser.h"
|
||||
#include "SPUThread.h"
|
||||
|
||||
constexpr spu_decoder<SPUDisAsm> s_spu_disasm;
|
||||
constexpr spu_decoder<spu_itype> s_spu_itype;
|
||||
constexpr spu_decoder<spu_iflag> s_spu_iflag;
|
||||
const spu_decoder<SPUDisAsm> s_spu_disasm;
|
||||
const spu_decoder<spu_itype> s_spu_itype;
|
||||
const spu_decoder<spu_iflag> s_spu_iflag;
|
||||
|
||||
u32 SPUDisAsm::disasm(u32 pc)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue