* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr81207.c
blobf0faa8c0a229fc0a7af93df3f049cf937685fe81
1 /* PR middle-end/81207 */
3 static const char *b[2] = { "'", "" };
5 int
6 foo (const char *d)
8 int e;
9 for (e = 0; b[e]; e++)
10 if (__builtin_strstr (d, b[e]))
11 return 1;
12 return 0;