mirror of https://github.com/PCSX2/pcsx2.git
Misc: More warning fixes.
This commit is contained in:
parent
6195f4b40e
commit
850aeaf05e
|
@ -1036,7 +1036,7 @@ std::unique_ptr<SymbolTreeNode> LocalVariableTreeWidget::buildNode(
|
|||
node->live_range = local_variable.live_range;
|
||||
node->symbol = ccc::MultiSymbolHandle(local_variable);
|
||||
|
||||
if (const ccc::GlobalStorage* storage = std::get_if<ccc::GlobalStorage>(&local_variable.storage))
|
||||
if (std::get_if<ccc::GlobalStorage>(&local_variable.storage))
|
||||
node->location = SymbolTreeLocation(SymbolTreeLocation::MEMORY, local_variable.address().value);
|
||||
else if (const ccc::RegisterStorage* storage = std::get_if<ccc::RegisterStorage>(&local_variable.storage))
|
||||
node->location = SymbolTreeLocation(SymbolTreeLocation::REGISTER, storage->dbx_register_number);
|
||||
|
|
|
@ -455,7 +455,7 @@ vifOp(vifCode_MSCALF)
|
|||
{
|
||||
vifXRegs.stat.VGW = false;
|
||||
vifFlush(idx);
|
||||
if (const u32 a = gifUnit.checkPaths(1, 1, 0))
|
||||
if ([[maybe_unused]] const u32 a = gifUnit.checkPaths(1, 1, 0))
|
||||
{
|
||||
GUNIT_WARN("Vif MSCALF: Stall! [%d,%d]", !!(a & 1), !!(a & 2));
|
||||
vif1Regs.stat.VGW = true;
|
||||
|
|
Loading…
Reference in New Issue