modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr81207.c (about) 1 /* PR middle-end/81207 */ 2 3 static const char *b[2] = { "'", "" }; 4 5 int 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 }