Make ICC more happy by spelling -f combo as -fcombo, so it can properly ignore "combo...
[libfirm] / ir / be / test / fehler114.c
1 unsigned x = 0xAABBCCDD;
2 unsigned y = 15;
3 unsigned z = 12;
4
5 int main(void) {
6     unsigned t = x;
7     unsigned t2 = y;
8     unsigned l = z;
9     printf("%X\n", (t << t2) | (t >> (32 - l)));
10     return 0;
11 }