mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
PPCAnalyst: Remove unused variables in BlockStats.
This commit is contained in:
parent
a5217c07b8
commit
1abffc0b05
@ -81,8 +81,6 @@ struct CodeOp // 16B
|
||||
|
||||
struct BlockStats
|
||||
{
|
||||
bool isFirstBlockOfFunction;
|
||||
bool isLastBlockOfFunction;
|
||||
int numCycles;
|
||||
};
|
||||
|
||||
|
@ -181,12 +181,6 @@ void JITWidget::Update()
|
||||
// Add stats to the end of the ppc box since it's generally the shortest.
|
||||
ppc_disasm << std::dec << std::endl;
|
||||
|
||||
// Add some generic analysis
|
||||
if (st.isFirstBlockOfFunction)
|
||||
ppc_disasm << "(first block of function)" << std::endl;
|
||||
if (st.isLastBlockOfFunction)
|
||||
ppc_disasm << "(last block of function)" << std::endl;
|
||||
|
||||
ppc_disasm << st.numCycles << " estimated cycles" << std::endl;
|
||||
|
||||
ppc_disasm << "Num instr: PPC: " << code_block.m_num_instructions
|
||||
|
Loading…
Reference in New Issue
Block a user