Remove ChangeProcessorID hack

* No library users require this hack any longer.
This commit is contained in:
MerryMage
2021-05-01 20:31:56 +01:00
parent 6404f58d23
commit 795b9bea9a
6 changed files with 4 additions and 36 deletions

View File

@@ -97,11 +97,6 @@ public:
is_executing = false;
}
void ChangeProcessorID(size_t value) {
conf.processor_id = value;
emitter.ChangeProcessorID(value);
}
void ClearCache() {
invalidate_entire_cache = true;
RequestCacheInvalidation();
@@ -292,7 +287,7 @@ private:
bool is_executing = false;
UserConfig conf;
const UserConfig conf;
A64JitState jit_state;
BlockOfCode block_of_code;
A64EmitX64 emitter;
@@ -334,10 +329,6 @@ void Jit::ExceptionalExit() {
impl->ExceptionalExit();
}
void Jit::ChangeProcessorID(size_t new_processor) {
impl->ChangeProcessorID(new_processor);
}
u64 Jit::GetSP() const {
return impl->GetSP();
}