(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr46088.c
       1  /* PR target/46088 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Os -fnon-call-exceptions -fpeel-loops" } */
       4  
       5  extern void bar (void);
       6  
       7  void
       8  foo (int i)
       9  {
      10    if (i >> 3)
      11      bar ();
      12  }