[pypy-commit] pypy arm-backend-2: remove gcremovetypeptr from test_zrpy_gc

bivab noreply at buildbot.pypy.org
Wed Feb 15 18:35:28 CET 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r52516:081cae386918
Date: 2012-02-10 15:23 +0100
http://bitbucket.org/pypy/pypy/changeset/081cae386918/

Log:	remove gcremovetypeptr from test_zrpy_gc

diff --git a/pypy/jit/backend/arm/test/test_zrpy_gc.py b/pypy/jit/backend/arm/test/test_zrpy_gc.py
--- a/pypy/jit/backend/arm/test/test_zrpy_gc.py
+++ b/pypy/jit/backend/arm/test/test_zrpy_gc.py
@@ -94,8 +94,9 @@
     #
     t = TranslationContext()
     t.config.translation.gc = gc
-    if gc != 'boehm':
-        t.config.translation.gcremovetypeptr = True
+    # The ARM backend does not support this option
+    #if gc != 'boehm':
+    #    t.config.translation.gcremovetypeptr = True
     for name, value in kwds.items():
         setattr(t.config.translation, name, value)
     ann = t.buildannotator(policy=annpolicy.StrictAnnotatorPolicy())


More information about the pypy-commit mailing list