]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/20031111-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / 20031111-1.c
1 /* Make sure that dead code isn't eliminated too early, avoiding
2 detection of errors. */
3 /* { dg-do compile } */
4
5 void foo(void)
6 {
7 if (0)
8 break; /* { dg-error "" } */
9 if (1)
10 ;
11 else
12 continue; /* { dg-error "" } */
13 }