mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
c5236310a9
Before this commit we were using int64_t for Offset, Strides, and TripCounts. Originally, this choice was intended because for some time we envisioned actually having a use for negative values, but in the end we decided there's no use for those. This commit switches all to unsigned integers, allowing to remove some static_cast across the codebase, and overall easing typicall computation we have to perform on those fields.