1 /* PR c/9163 */
2 /* The following test used to ICE after an error message in C99 mode
3    because GCC was trying to expand the tree to rtl.  */
4 
5 /* { dg-do compile } */
6 /* { dg-options "-std=c99" } */
7 
8 
9 
f()10 void f ()
11 {
12 	for (; int ; ); /* { dg-error "" } */
13 }
14 
foo()15 void foo ()
16 {
17         while (int i); /* { dg-error "" } */
18 }
19