Jit: Remove checkedEntry

It's now always identical to normalEntry.
This commit is contained in:
JosJuice
2022-10-22 14:09:03 +02:00
parent f78ba9ac55
commit 1813f0fdb5
8 changed files with 14 additions and 26 deletions

View File

@ -187,7 +187,7 @@ JitInterface::GetHostCode(u32 address) const
}
GetHostCodeResult result;
result.code = block->checkedEntry;
result.code = block->normalEntry;
result.code_size = block->codeSize;
result.entry_address = block->effectiveAddress;
return result;