(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
mem-shift-canonical.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -dp" } */
       3  /* { dg-require-effective-target lp64 } */
       4  
       5  void
       6  f (int x0, int *x1, long x2)
       7  {
       8    asm volatile ("// foo %0 %1"
       9  		:: "r,w" (x0), "Q,m" (x1[x2]));
      10  }
      11  
      12  /* { dg-final { scan-assembler-times "add_lsl_di" 1 } } */