OSDN Git Service

2011-11-01 Tom de Vries <tom@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr49602.c
1 /* PR debug/49602 */
2 /* { dg-do compile } */
3 /* { dg-options "-g -O2" } */
4
5 static void
6 foo (int *x)
7 {
8 }
9
10 void
11 bar (int *x)
12 {
13   int i;
14   for (i = 0; i == 1; ++i)
15     x = 0;
16   foo (x);
17 }