OSDN Git Service

PR middle-end/51761
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20100609-1.c
1 extern unsigned long int strtoul (__const char *__restrict __nptr,       char **__restrict __endptr, int __base);
2 int find_reloads (int i, char *p)
3 {
4   int c;
5   while ((c = *p++))
6     return strtoul (p - 1, &p, 10); 
7   return 0;
8 }