95be2a4ecf15a50c5663cd3063333641d6d14f04
[libfirm] / ir / be / test / calls.c
1 #if 0
2
3 int test(int a, int b, int c, int d, int e, int f, int g, int h, int i)
4 {
5   x(a);
6   x(a, b);
7   x(a, b, c);
8   x(a, b, c, d);
9   x(a, b, c, d, e);
10   x(a, b, c, d, e, f);
11   x(a, b, c, d, e, f, g);
12   x(a, b, c, d, e, f, g, h);
13   x(a, b, c, d, e, f, g, h, i);
14 }
15
16 #endif
17
18
19 int test(int a, int b, int c)
20 {
21   int d, e;
22
23   d = a/b;
24 //  e = b/c;
25
26   return d;
27 }