8sa1-gcc/gcc/testsuite/gcc.c-torture/compile/20000803-1.c
2000-08-03 01:46:44 -06:00

12 lines
149 B
C

static int gl_cnt = 0;
static char gl_buf[1024];
void
gl_yank()
{
int i;
for (i=gl_cnt; i >= 0; i--)
gl_buf[i+10] = gl_buf[i];
}