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