Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / powerpc / rotate.c
blob5d47215d9d55d5aea4b82890a9203963d7dd9ab1
1 /* { dg-options "-O2" } */
2 /* { dg-final { scan-assembler-not "slwi" } } */
3 unsigned int foo (unsigned int x)
5 return ((x >> 16) & 0xffff) | ((x & 0xffff) << 16);