Skip to content

Commit adbbf99

Browse files
committed
Fix perf regression introduced with a bad fix for OS#17417473
1 parent cd27b56 commit adbbf99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Backend/GlobOpt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14274,7 +14274,7 @@ GlobOpt::OptIsInvariant(Sym *sym, BasicBlock *block, Loop *loop, Value *srcVal,
1427414274
}
1427514275
else if (sym->IsPropertySym())
1427614276
{
14277-
if (!loop->landingPad->globOptData.liveFields->Test(sym->AsPropertySym()->m_stackSym->m_id))
14277+
if (!loop->landingPad->globOptData.liveVarSyms->Test(sym->AsPropertySym()->m_stackSym->m_id))
1427814278
{
1427914279
return false;
1428014280
}

0 commit comments

Comments
 (0)