(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sse2-v1ti-rotate.c
       1  /* { dg-do compile { target int128 } } */
       2  /* { dg-options "-O2 -msse2" } */
       3  /* { dg-require-effective-target sse2 } */
       4  
       5  typedef unsigned __int128 uv1ti __attribute__ ((__vector_size__ (16)));
       6  
       7  uv1ti rotr(uv1ti x, unsigned int i) { return (x >> i) | (x << (128-i)); }
       8  uv1ti rotl(uv1ti x, unsigned int i) { return (x << i) | (x >> (128-i)); }
       9  
      10  /* { dg-final { scan-assembler-not "shrq" } } */
      11  /* { dg-final { scan-assembler-not "salq" } } */