typo
[libfirm] / ir / be / test / conv_orgie.c
1 #include <stdio.h>
2
3 double a;
4
5 double test(double d) {
6         float x = d;
7         double d1 = x;
8         float x1 = d1;
9         return x1;
10 }
11
12 int main() {
13         printf("%f\n", test(a));
14         return 0;
15 }