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