We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d1e72 commit c119221Copy full SHA for c119221
lib/Backend/GlobOptBailOut.cpp
@@ -784,8 +784,6 @@ void GlobOpt::RecordInlineeFrameInfo(IR::Instr* inlineeEnd)
784
}
785
786
787
- GlobOptBlockData& globOptData = this->currentBlock->globOptData;
788
-
789
if (frameInfo->intSyms->TestEmpty() && frameInfo->intSyms->Test(argSym->m_id))
790
{
791
// Var version of the sym is not live, use the int32 version
@@ -800,7 +798,7 @@ void GlobOpt::RecordInlineeFrameInfo(IR::Instr* inlineeEnd)
800
798
801
799
else
802
803
- Assert(globOptData.liveVarSyms->Test(argSym->m_id));
+ Assert(frameInfo->varSyms->Test(argSym->m_id));
804
805
806
if (argSym->IsConst() && !argSym->IsInt64Const())
0 commit comments