mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-27 09:45:19 +01:00
dynarmic: Remove poison_memory ClearCache parameter (#1)
Unused since the switch to Xbyak
This commit is contained in:
parent
7e3c981974
commit
fb6d838bd9
4 changed files with 6 additions and 7 deletions
|
|
@ -123,9 +123,9 @@ size_t Jit::Run(size_t cycle_count) {
|
|||
return cycles_executed;
|
||||
}
|
||||
|
||||
void Jit::ClearCache(bool poison_memory) {
|
||||
void Jit::ClearCache() {
|
||||
ASSERT(!is_executing);
|
||||
impl->block_of_code.ClearCache(poison_memory);
|
||||
impl->block_of_code.ClearCache();
|
||||
impl->emitter.ClearCache();
|
||||
impl->jit_state.ResetRSB();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue