* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr46002.c
blob27a3a3a284c607c2215ea461f056676997417c26
1 /* { dg-options "-fira-algorithm=priority" } */
2 char **
3 foo (char **p, char *cmp, unsigned i)
5 for (; *p; p++)
6 if (__builtin_strncmp (*p, cmp, i))
7 if (i == __builtin_strlen (*p))
8 break;
9 return p;