6 changes: 3 additions & 3 deletions Source/Core/Core/PowerPC/JitCommon/JitCache.h
Expand Up @@ -30,9 +30,6 @@ struct JitBlockData
u8* far_begin;
u8* far_end;

// A special entry point for block linking; usually used to check the
// downcount.
u8* checkedEntry;
// The normal entry point for the block, returned by Dispatch().
u8* normalEntry;

Expand Down Expand Up @@ -73,6 +70,9 @@ struct JitBlock : public JitBlockData
struct LinkData
{
u8* exitPtrs; // to be able to rewrite the exit jump
#ifdef _M_ARM_64
const u8* exitFarcode;
#endif
u32 exitAddress;
bool linkStatus; // is it already linked?
bool call;
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/JitInterface.cpp
Expand Up @@ -206,7 +206,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;
Expand Down