blob: 640758d3fefb306cc9e97ba14580d782d02a6ce4 [file] [log] [blame]
/* PR tree-optimization/64269 */
void
foo (char *p)
{
__SIZE_TYPE__ s = ~(__SIZE_TYPE__)0;
*p = 0;
__builtin_memset (p + 1, 0, s);
}