aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr93927-2.c
blob: 4834ece2d022d0b5f08109bbb98881aef4cda5b0 (plain)
1
2
3
4
5
6
7
8
9
/* PR tree-optimization/93927 */

__SIZE_TYPE__ strchr (const char *, int);

char *
foo (char *x)
{
  return !!strchr (x, 0) ? "0" : "1";
}