1 Commits

Author SHA1 Message Date
93bcd1d8e1 private_remoing: add loop alignment check and fix messages 2024-04-16 15:13:36 +03:00

View File

@@ -2012,6 +2012,7 @@ static bool fixedSubscriptLess(const ArraySubscript& left, const ArraySubscript&
// using empirical methods
static bool arePossibleDifferent(ArraySubscript left, ArraySubscript right)
{
// TODO: add warning?
if (left.isFixed && right.isRegIndex && right.regExprStart == right.regExprEnd) {
return true; // in general, this is not true
}