blob: c206d8689f1ac138968bb62de6e7bf0f84825a9f [file] [log] [blame]
/* PR tree-optimization/51246 */
int a, *b;
void
test (void)
{
while (1)
{
int c;
a = c;
b = &c;
}
}