mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-14 01:18:46 +00:00
Fixes stale data bug in the interpreter
This commit is contained in:
parent
d8b3e3bd84
commit
669aa99d3e
@ -164,6 +164,8 @@ void InterpreterCore::ExecuteCode(FEXCore::Core::InternalThreadState *Thread) {
|
||||
if (IROp->HasDest) {
|
||||
uint64_t AllocSize = OpSize * std::max(static_cast<uint8_t>(1), IROp->Elements);
|
||||
DestMap[Node] = AllocateTmpSpace(AllocSize);
|
||||
// Clear any previous results
|
||||
memset(GDP, 0, 16);
|
||||
}
|
||||
|
||||
switch (IROp->Op) {
|
||||
|
Loading…
Reference in New Issue
Block a user