(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arc/
or-cnst-size2.c
       1  /* Check if we optimize the immediate of a predicated instruction.  */
       2  /* { dg-options "-Os -fif-conversion -fif-conversion2" } */
       3  
       4  int a;
       5  int foo (void)
       6  {
       7    if ((a & 60) == 0)
       8      return a | 64;
       9  }
      10  
      11  /* { dg-final { scan-assembler "tst" } } */
      12  /* { dg-final { scan-assembler "bset" } } */