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
foo(int i)8 foo (int i)
9 {
10   if (i >> 3)
11     bar ();
12 }
13