| 1612 | |
| 1613 | |
| 1614 | static bool CompareExprList(const HighLevelILInstructionList& a, const HighLevelILInstructionList& b) |
| 1615 | { |
| 1616 | if (a.size() < b.size()) |
| 1617 | return true; |
| 1618 | if (a.size() > b.size()) |
| 1619 | return false; |
| 1620 | auto i = a.begin(); |
| 1621 | auto j = b.begin(); |
| 1622 | for (; i != a.end(); ++i, ++j) |
| 1623 | { |
| 1624 | if (*i < *j) |
| 1625 | return true; |
| 1626 | if (*j < *i) |
| 1627 | return false; |
| 1628 | } |
| 1629 | return false; |
| 1630 | } |
| 1631 | |
| 1632 | |
| 1633 | bool HighLevelILInstruction::operator<(const HighLevelILInstruction& other) const |