]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr97315-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr97315-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 void c(int);
5
6 int a;
7 void b()
8 {
9 if (a >= 2147483647)
10 c(a + 1);
11 }