blob: bb8eeb0c3320fe0bf6255b7bbb6980de1c9ef3d7 [file] [log] [blame]
/* PR debug/49602 */
/* { dg-do compile } */
/* { dg-options "-g -O2" } */
static void
foo (int *x)
{
}
void
bar (int *x)
{
int i;
for (i = 0; i == 1; ++i)
x = 0;
foo (x);
}