aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr92056.c
blob: d04da763e1589578f38c9f7632870df6fa03d7d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR tree-optimization/92056 */

const char *d;

void
foo (int c, char *e, const char *a, const char *b)
{
  switch (c)
    {
    case 33:
      for (;; d++)
        if (__builtin_strcmp (b ? : "", d))
          return;
      break;
    case 4:
      __builtin_sprintf (e, a);
    }
}