summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/variable.c b/variable.c
index a414516..12cfcc4 100644
--- a/variable.c
+++ b/variable.c
@@ -801,6 +801,14 @@ print_variable_set (set, prefix)
max %u in one bucket.\n",
(double) nvariables / (double) set->buckets,
per_bucket);
+#else
+ {
+ int f = (nvariables * 1000 + 5) / set->buckets;
+ printf ("# average of %d.%d variables per bucket, \
+max %u in one bucket.\n",
+ f/10, f%10,
+ per_bucket);
+ }
#endif
}
}