Make ICC more happy by spelling -f combo as -fcombo, so it can properly ignore "combo...
[libfirm] / ir / be / test / addr_test.c
1 #include <stdio.h>
2
3 int blubber(int a, int b, int c, int d) {
4         int *x = &a;
5         int *y = &b;
6
7         *x = c;
8         *y = d;
9
10         return a * b;
11 }
12
13 int main(void) {
14         printf("Result: %d\n", blubber(2, 3, 22, 33));
15         return 0;
16 }