(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
and_const2.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  long long f2 (long x)
       5  {
       6     x &= 0x0ffffffffffffff8LL;
       7  
       8     x &= 0xff001fffLL;
       9  
      10     return x;
      11  }
      12  
      13  /* { dg-final { scan-assembler-times "and\t" 2 } } */
      14  /* { dg-final { scan-assembler-not "movk\t" } } */