Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / arm / builtin-bswap16.x
blob1e7f41edf013e353944f0a4879a1248c8a8b2f11
1 unsigned short swapu16_1 (unsigned short x)
3   return (x << 8) | (x >> 8);
6 unsigned short swapu16_2 (unsigned short x)
8   return (x >> 8) | (x << 8);