Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr67821.c
blob1c9e8b9db3fa670dd641976f7d480d88a8badb5b
1 /* { dg-do compile } */
3 int isdigit (int);
5 int
6 foo (const char *s)
8 int success = 1;
9 const char *p = s + 2;
10 if (!isdigit (*p))
11 success = 0;
12 while (isdigit (*p))
13 ++p;
14 return success;