removed firm proj num translation function, existing projs are renumbered instead
[libfirm] / ir / be / bestatevent.c
index c67809c..f8854c3 100644 (file)
@@ -62,12 +62,12 @@ void be_stat_ev_dbl(const char *ev, double value)
        }
 }
 
-void be_stat_ev_ull(const char *ev, unsigned long long value)
+void be_stat_ev_ull(const char *ev, ulong64 value)
 {
        if(sp > 0) {
                ev_env_t *env = &envs[sp - 1];
                if(env->f)
-                       fprintf(env->f, "%s%s;%llu\n", env->tag, ev, value);
+                       fprintf(env->f, "%s%s;%" ULL_FMT "\n", env->tag, ev, value);
        }
 }