committing ilp based spilling
[libfirm] / ir / be / test / convtest.c
1 int bla(char a, char b, char c, char d, short e, short f, short g, int h, int i, float j) {
2         return a + b + c + d + e + f + g + h + i + (int)j;
3 }
4
5 int convtest_func(char c, short s, int i, float f, double d) {
6         char sc = c + s;
7         char ic = c + i;
8         char fc = c + f;
9         char dc = c + d;
10         short is = s + i;
11         short fs = s + f;
12         short ds = s + d;
13         int fi = i + f;
14         int di = i + d;
15         float df = d + f;
16
17         return bla(sc, ic, fc, dc, is, fs, ds, fi, di, df);
18 }