1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-O2" } */
3 
4 typedef unsigned int UTItype __attribute__ ((mode (TI)));
5 
6 void foo (UTItype *);
7 
8 UTItype
test(void)9 test (void)
10 {
11   UTItype c = 0;
12   foo (&c);
13   c = c >> 5 | c << 123;
14   return c;
15 }
16 /* { dg-final { scan-assembler-times "shrdq" 2 } } */
17