Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / pr25310.c
blob4cd3087fddc23b2f57e8894b19e0f68b465d3f56
2 extern int f (char *, int);
4 void test (void)
6 char buffer[65536];
7 char *bufptr;
8 char *bufend;
9 int bytes;
11 bufptr = buffer;
12 bufend = buffer + sizeof(buffer) - 1;
14 while ((bytes = f (bufptr, bufend - bufptr)) > 0)
15 bufptr += bytes;