David Spickett 78739ff84a
[llvm][HashRecognize] Fix compiler warning on Arm 32-bit (#161821)
```
/home/david.spickett/llvm-project/llvm/lib/Analysis/HashRecognize.cpp💯54: warning: comparison of integers of different signs:
'typename iterator_traits<ilist_iterator_w_bits<node_options<Instruction, true, false, void, true, BasicBlock>, false, false>>::difference_type' (aka 'int') and 'size_type' (aka 'unsigned int') [-Wsign-compare]
  100 |   return std::distance(Latch->begin(), Latch->end()) != Visited.size();
      |          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~
```

By using Latch->size() instead.
2025-10-03 15:58:11 +01:00
..