switch is still broken, copying over cparser testcase since noone runs the cparser...
[libfirm] / ir / be / test / store_bug.c
1 extern int x;
2 int x;
3
4 int main()
5 {
6         int i = 0;
7
8         x = 0;
9         do {
10                 x = x + i;
11                 ++i;
12         } while(i < 3);
13
14         return x != 3;
15 }