Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / 20030416-1.c
blobc3d18b682819c32c229ead4fd9edac23ac0917bc
1 void foo(int x)
3 if (x > 3)
4 {;}
5 else
6 bar();
7 x = 9;
10 main()
12 int j;
14 foo(j);
15 return j;