JitState: Remove Unused instructionNumber

This commit is contained in:
mitaclaw 2024-04-21 08:51:29 -07:00
parent 758097f09c
commit e7dbd298a8
3 changed files with 0 additions and 3 deletions

View File

@ -952,7 +952,6 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
js.compilerPC = op.address;
js.op = &op;
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
js.instructionNumber = i;
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
const GekkoOPInfo* opinfo = op.opinfo;
js.downcountAmount += opinfo->num_cycles;

View File

@ -1070,7 +1070,6 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
js.compilerPC = op.address;
js.op = &op;
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
js.instructionNumber = i;
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
const GekkoOPInfo* opinfo = op.opinfo;
js.downcountAmount += opinfo->num_cycles;

View File

@ -91,7 +91,6 @@ protected:
{
u32 compilerPC;
u32 blockStart;
int instructionNumber;
int instructionsLeft;
u32 downcountAmount;
u32 numLoadStoreInst;