]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr46088.c
Update copyright years.
[thirdparty/gcc.git] / 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 }