You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 'delayslotInstruction' is a nullptr we need to change the following:
if (!delayslotInstruction) {
throw core::irgen::InvalidInstructionException(tr("Cannot find a delay slot at 0x%1.").arg(delayslotInstruction->endAddr(), 0, 16));
}
into this:
if (!delayslotInstruction) {
throw core::irgen::InvalidInstructionException(tr("Cannot find a delay slot at 0x%1.").arg(instruction->endAddr(), 0, 16));
}
The text was updated successfully, but these errors were encountered:
Since 'delayslotInstruction' is a nullptr we need to change the following:
into this:
The text was updated successfully, but these errors were encountered: