- some strange combination of cond-eval and gvn-pre
[libfirm] / ir / be / test / fehler080.c
1 /*$ -fno-inline $*/
2
3 #include <stdio.h>
4 #include <limits.h>
5
6 int f(unsigned x) {
7         return x < 10;
8 }
9
10 int main(void) {
11         printf("Res: %d (should be 0)\n", f(INT_MIN));
12         return 0;
13 }