Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r60451:e2304d98bbcc
Date: 2013-01-25 16:24 +0200
http://bitbucket.org/pypy/pypy/changeset/e2304d98bbcc/

Log:    use the default enable_opts here

diff --git a/rpython/jit/backend/x86/test/test_zrpy_gc.py 
b/rpython/jit/backend/x86/test/test_zrpy_gc.py
--- a/rpython/jit/backend/x86/test/test_zrpy_gc.py
+++ b/rpython/jit/backend/x86/test/test_zrpy_gc.py
@@ -83,7 +83,7 @@
     return {(gc.GcLLDescr_framework, 'can_use_nursery_malloc'):
                 can_use_nursery_malloc2}
 
-def compile(f, gc, enable_opts='', **kwds):
+def compile(f, gc, **kwds):
     from rpython.annotator.listdef import s_list_of_strings
     from rpython.translator.translator import TranslationContext
     from rpython.jit.metainterp.warmspot import apply_jit
@@ -107,7 +107,7 @@
                 old_value[obj, attr] = getattr(obj, attr)
                 setattr(obj, attr, value)
             #
-            apply_jit(t, enable_opts=enable_opts)
+            apply_jit(t)
             #
         finally:
             for (obj, attr), oldvalue in old_value.items():
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to