mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-02 19:45:58 +02:00
dynarmic: Remove poison_memory ClearCache parameter (#1)
Unused since the switch to Xbyak
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user