summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2001-08-13 09:45:44 +0000
committerJacques Garrigue <garrigue at math.nagoya-u.ac.jp>2001-08-13 09:45:44 +0000
commit13b6fa0a4ae2c8aa4efa32719d0efff6ac4ca79b (patch)
tree0ada799855ad8115ad528ca0cde659a06d3ac8f1
parentf753fdd05eeb9a30cad08573723a8ffe7cb67a68 (diff)
message de debugage oublie'
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3634 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--byterun/globroots.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/byterun/globroots.c b/byterun/globroots.c
index 2e72567fc..396b36654 100644
--- a/byterun/globroots.c
+++ b/byterun/globroots.c
@@ -45,7 +45,6 @@ static int random_level(void)
so consume most significant bits first */
while ((r & 0xC0000000U) == 0xC0000000U) { level++; r = r << 2; }
Assert(level <= MAX_LEVEL);
- printf("%d\n", level);
return level;
}