* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20100609-1.c
blob8e1175faa32ea7d90290ac8c249dcc67367ad339
1 extern unsigned long int strtoul (__const char *__restrict __nptr, char **__restrict __endptr, int __base);
2 int find_reloads (int i, char *p)
4 int c;
5 while ((c = *p++))
6 return strtoul (p - 1, &p, 10);
7 return 0;