Make ICC more happy by spelling -f combo as -fcombo, so it can properly ignore "combo...
[libfirm] / ir / be / test / fe_bug.c
1 int a_number()
2 {
3         return 7;
4 }
5
6 void a_m_serial()
7 {
8         int n, a_number();
9         n= a_number();
10 }
11
12 int main()
13 {
14         a_m_serial();
15         printf("Result: %d\n", a_number());
16         return 0;
17 }