mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +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
|
@ -105,9 +105,9 @@ void fmt_class_string<ppu_join_status>::format(std::string& out, u64 arg)
|
|||
});
|
||||
}
|
||||
|
||||
constexpr ppu_decoder<ppu_interpreter_precise> g_ppu_interpreter_precise;
|
||||
constexpr ppu_decoder<ppu_interpreter_fast> g_ppu_interpreter_fast;
|
||||
constexpr ppu_decoder<ppu_itype> g_ppu_itype;
|
||||
const ppu_decoder<ppu_interpreter_precise> g_ppu_interpreter_precise;
|
||||
const ppu_decoder<ppu_interpreter_fast> g_ppu_interpreter_fast;
|
||||
const ppu_decoder<ppu_itype> g_ppu_itype;
|
||||
|
||||
extern void ppu_initialize();
|
||||
extern void ppu_initialize(const ppu_module& info);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue