Test case to use the correct Cmp mode
[libfirm] / ir / be / test / Bucmp.c
1 char glob = -1;
2
3 int main(void) {
4         char x = 126;
5         while (x > 0) {
6                 x++;
7                 printf("%d\n", x);
8                 if (x == -125) break;
9         }
10         return 0;
11 }