tree-optimization/116658 - latent issue in vect_is_slp_load_node
[official-gcc.git] / gcc / testsuite / gcc.target / vax / bswapdi-1.c
blob1baa0185110168e4ef10246715f180287ff9b998
1 /* { dg-options "" } */
3 typedef int DItype __attribute__ ((mode (DI)));
4 DItype
5 __bswapdi2 (DItype u)
7 return ((((u) & 0xff00000000000000ull) >> 56)
8 | (((u) & 0x00ff000000000000ull) >> 40)
9 | (((u) & 0x0000ff0000000000ull) >> 24)
10 | (((u) & 0x000000ff00000000ull) >> 8)
11 | (((u) & 0x00000000ff000000ull) << 8)
12 | (((u) & 0x0000000000ff0000ull) << 24)
13 | (((u) & 0x000000000000ff00ull) << 40)
14 | (((u) & 0x00000000000000ffull) << 56));