1 /* PR middle-end/81207 */
2 
3 static const char *b[2] = { "'", "" };
4 
5 int
foo(const char * d)6 foo (const char *d)
7 {
8   int e;
9   for (e = 0; b[e]; e++)
10     if (__builtin_strstr (d, b[e]))
11       return 1;
12   return 0;
13 }
14