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