eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / fehler088.c
1 /*$ -fno-inline $*/
2
3 int test(unsigned int a)
4 {
5         return a > 0;
6 }
7
8 int main(void)
9 {
10         printf("0xFFFFFFFFU > 0 is %d (should be 1)\n", test(0xFFFFFFFFU));
11         return 0;
12 }