1 /* PR debug/49602 */ 2 /* { dg-do compile } */ 3 /* { dg-options "-g -O2" } */ 4 5 static void foo(int * x)6 foo (int *x) 7 { 8 } 9 10 void bar(int * x)11 bar (int *x) 12 { 13 int i; 14 for (i = 0; i == 1; ++i) 15 x = 0; 16 foo (x); 17 } 18