aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr46461.c
blob: 7e38598e169ea857e1e39964d2545f81e9a6711c (plain)
1
2
3
4
5
6
7
8
/* PR tree-optimization/46461 */

void
foo (char *c)
{
  c[7] = 0xff;
  __builtin_memset (c + 8, 0xff, 8);
}