]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/gimplefe-error-11.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / gimplefe-error-11.c
1 /* { dg-do compile } */
2 /* { dg-options "-fgimple" } */
3
4 int bar();
5 __GIMPLE
6 int foo()
7 {
8 if (bar()) /* { dg-error "comparison required" } */
9 goto bb1;
10 else
11 goto bb2;
12 }