Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / pr42299.c
blob5a9199f274a337e9eba9d4c8c19886a92867ee63
1 /* { dg-options "-g" } */
3 static int
4 foo (int x, int y)
6 if (y)
7 goto lab;
8 if (x)
9 y = 0;
10 if (y)
11 goto lab;
12 y = 0;
13 lab:
14 return y;
17 void
18 baz (int x, int y)
20 y = foo (x, y);
21 if (y != 0)
22 bar ();