Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / rotate-2.c
blobbe4dd1dc28d9360d0b2157a58979198cf795a733
1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-O2" } */
4 typedef unsigned int UTItype __attribute__ ((mode (TI)));
6 void foo (UTItype *);
8 UTItype
9 test (void)
11 UTItype c = 0;
12 foo (&c);
13 c = c >> 5 | c << 123;
14 return c;
16 /* { dg-final { scan-assembler-times "shrdq" 2 } } */