Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / id-pr43464-1.c
blob8e6ac209e7cbb0b802c2d8eebccb048b5028f4d7
1 typedef struct regnode
3 char flags;
4 } regnode;
5 extern const unsigned char A[];
6 int bar (regnode *);
8 char *foo (regnode *c, char *s, int norun)
10 int uskip;
11 while (s + (uskip = A[*s]))
13 if ((c->flags || bar (c)) && norun)
14 goto got_it;
15 s += uskip;
17 got_it:
18 return s;