PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / asan / pr79196.c
blob66a31b90f305b6312f829bc1b86aae2d6265a19b
1 // PR tree-optimization/79196
2 // { dg-do run }
4 int
5 __attribute__((noinline))
6 test(char *a)
8 if (__builtin_strstr (a, "DROP CONVERSION") == a)
9 return 1;
11 return 0;
14 int main(int argc, char **argv)
16 return test ("x");