summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2024-05-24 20:51:39 +0200
committerJosJuice <josjuice@gmail.com>2024-05-24 20:51:39 +0200
commitf6aca69ea0d7e6dfc86373581eb8fee4c53331d5 (patch)
treebe1b64ddc15d8b74863e5d9c32d7f119c6c03e09 /Source
parente0e09d1074ee5b067d92cc50c093992fe9dca7a5 (diff)
PPCAnalyst: Remove unused member isBranchTarget
Branch targets always start a new block, so this variable isn't useful.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/PowerPC/JitCommon/JitBase.cpp2
-rw-r--r--Source/Core/Core/PowerPC/PPCAnalyst.h1
2 files changed, 0 insertions, 3 deletions
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;