(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
rotate-2.c
       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
       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 } } */