PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / builtin-bswap-1.c
bloba6706e693e129faef3485805f82a2a0d729418ac
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 /* { dg-final { scan-assembler-times "rev16\\t" 2 } } */
6 /* rev16 */
7 short
8 swaps16 (short x)
10 return __builtin_bswap16 (x);
13 /* rev16 */
14 unsigned short
15 swapu16 (unsigned short x)
17 return __builtin_bswap16 (x);