1 /* PR tree-optimization/46461 */
2 
3 void
foo(char * c)4 foo (char *c)
5 {
6   c[7] = 0xff;
7   __builtin_memset (c + 8, 0xff, 8);
8 }
9