convert bitfield initializer tarvals before using them
[libfirm] / ir / be / test / codegen / overspilling.c
1 int x;
2
3 void f(int a, int b, char* p)
4 {
5         int y = x;
6         do {
7                 *p++ = 0;
8         } while (++a != b);
9         rand();
10         x = y;
11 }