arch_register_class_put() is only used locally
[libfirm] / ir / be / test / convtest.c
index f4a9730..43b489e 100644 (file)
@@ -12,7 +12,7 @@ int convtest_func(char c, short s, int i, float f, double d) {
        short is = s + i;
        short fs = s + f;
        short ds = s + d;
-        int ti = i + s;
+    //int ti = i + s;
        int fi = i + f;
        int di = i + d;
        float df = d + f;
@@ -21,6 +21,6 @@ int convtest_func(char c, short s, int i, float f, double d) {
 }
 
 int main() {
-       printf("%d\n", convtest_func('a', 42, 2444, 7.753f, 8.222));
+       printf("%d (expected 7576)\n", convtest_func('a', 42, 2444, 7.753f, 8.222));
        return 0;
 }