]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/gimplefe-error-3.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / gimplefe-error-3.c
1 /* { dg-do compile } */
2 /* { dg-options "-fgimple" } */
3
4 int __GIMPLE foo()
5 {
6 if (a != 2) /* { dg-error "undeclared" } */
7 goto bb1;
8 else
9 goto bb2;
10
11 bb1:
12 a_1 = 10; /* { dg-error "undeclared" } */
13 return a_1;
14
15 bb2:
16 return 1;
17 }