mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-28 10:15:00 +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
|
|
@ -18,10 +18,10 @@ namespace Dynarmic {
|
|||
namespace BackendX64 {
|
||||
|
||||
BlockOfCode::BlockOfCode(UserCallbacks cb) : Xbyak::CodeGenerator(128 * 1024 * 1024), cb(cb) {
|
||||
ClearCache(false);
|
||||
ClearCache();
|
||||
}
|
||||
|
||||
void BlockOfCode::ClearCache(bool poison_memory) {
|
||||
void BlockOfCode::ClearCache() {
|
||||
consts.~Consts();
|
||||
new (&consts) Consts();
|
||||
reset();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue