]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/20000629-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / 20000629-1.c
CommitLineData
46639003
JJ
1/* { dg-do compile } */
2/* { dg-options "-O2 -g" } */
3
4void foo(register char *p)
5{
6 char c, *q, *sp;
7 while (1) {
8 *p++=0;
9 sp=p+1;
10 c=*sp;
11 *p++=0;
12 }
13}