diff --git a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp index 5ec9af3967..372a06008c 100644 --- a/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/JitBase.cpp @@ -272,8 +272,6 @@ bool JitBase::CanMergeNextInstructions(int count) const { return false; } - if (js.op[i].isBranchTarget) - return false; } return true; } diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.h b/Source/Core/Core/PowerPC/PPCAnalyst.h index 4e665d8d42..ed0242498b 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.h +++ b/Source/Core/Core/PowerPC/PPCAnalyst.h @@ -38,7 +38,6 @@ struct CodeOp // 16B s8 fregOut = 0; BitSet8 crIn; BitSet8 crOut; - bool isBranchTarget = false; bool branchUsesCtr = false; bool branchIsIdleLoop = false; BitSet8 wantsCR;