Misc: More warning fixes.

This commit is contained in:
lightningterror 2025-03-12 18:00:22 +01:00 committed by Ty
parent 6195f4b40e
commit 850aeaf05e
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;