(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
csky/
land1.c
       1  /* { dg-do compile } */
       2  /* { dg-csky-options "-O1" } */
       3  
       4  /* Test special code generation patterns for bit operators.  */
       5  
       6  long long int land1 (long long int x)
       7  {
       8    return x & 0xffffffff00000000LL;
       9  }
      10  
      11  /* { dg-final { scan-assembler "movi.*, 0" } } */