On 06/01/2017 10:57 PM, H.J. Lu wrote: > I don't think it works with memcmp since return value depends on > the first bytes which differs. Say > > ABCDE turns into EDCBDCBA > > If all bytes differs, we should only compare A, not EDCBDCBA. That's what the bswapq is for, it reverses the order of bytes. Florian