view gcc/testsuite/gcc.c-torture/compile/pr47265.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR tree-optimization/47265 */

struct S
{
  char a[3];
  char b[3];
};

void
bar (char *dst, const char *src, unsigned n)
{
  while (n--)
    *dst++ = *src ? *src++ : ' ';
}

void
foo (struct S *s)
{
  bar (s->a, s->b, 3);
}