aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr119226.c
blob: 8eb98578e0083c4a519d7ee7d93f89ee78f4cb42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR middle-end/119226 */

char a[64];
void bar (void);

void
foo (int x)
{
  char *b = a + __builtin_strcspn (a, x ? "" : "ab");
  if (b[0])
    bar ();
}