another fehler from 176.gcc
[libfirm] / ir / be / test / fehler57.c
1 int floor_log2_wide (unsigned int x)
2 {
3         int log = -1;
4         while (x != 0)
5                 log++, x >>= 1;
6         return log;
7 }
8
9 int main()
10 {
11         printf("Res: %d\n", floor_log2_wide(4294967251));
12 }