1 Commits

Author SHA1 Message Date
bbb1f08959 private_remoing: add loop alignment check and fix messages 2024-04-16 15:49:58 +03:00

View File

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