dowhile problem
[libfirm] / ir / be / test / fehler8.c
1
2 int main(void) {
3
4         float a;
5         float c;
6
7         for (a=0; a<7; a++) {
8                 c = a;
9         }
10
11         printf("%f %f\n", a, c);
12
13         return 0;
14 }