[pypy-commit] pypy default: Allow at least the front-end to be tested with the "none" gc.

arigo noreply at buildbot.pypy.org
Wed Nov 30 02:43:55 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r49989:79bcc27b894a
Date: 2011-11-30 02:23 +0100
http://bitbucket.org/pypy/pypy/changeset/79bcc27b894a/

Log:	Allow at least the front-end to be tested with the "none" gc.

diff --git a/pypy/jit/metainterp/gc.py b/pypy/jit/metainterp/gc.py
--- a/pypy/jit/metainterp/gc.py
+++ b/pypy/jit/metainterp/gc.py
@@ -7,6 +7,9 @@
         self.config = config
 
 
+class GC_none(GcDescription):
+    malloc_zero_filled = True
+
 class GC_boehm(GcDescription):
     malloc_zero_filled = True
 


More information about the pypy-commit mailing list