shorter version
[libfirm] / ir / be / test / fehler57.c
1 int floor_log2_wide (unsigned int x)
2 {
3         x >>= 1;
4         return x;
5 }
6
7 int main()
8 {
9         printf("Res: %d\n", floor_log2_wide(4294967251));
10 }