aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr64269.c
blob: 640758d3fefb306cc9e97ba14580d782d02a6ce4 (plain)
1
2
3
4
5
6
7
8
9
/* PR tree-optimization/64269 */

void
foo (char *p)
{
  __SIZE_TYPE__ s = ~(__SIZE_TYPE__)0;
  *p = 0;
  __builtin_memset (p + 1, 0, s);
}