[pypy-commit] pypy default: now we can make relax=False by default

fijal noreply at buildbot.pypy.org
Sun May 12 14:05:46 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r64004:ec8f74e3fb25
Date: 2013-05-12 14:04 +0200
http://bitbucket.org/pypy/pypy/changeset/ec8f74e3fb25/

Log:	now we can make relax=False by default

diff --git a/rpython/rlib/entrypoint.py b/rpython/rlib/entrypoint.py
--- a/rpython/rlib/entrypoint.py
+++ b/rpython/rlib/entrypoint.py
@@ -7,7 +7,7 @@
 
 pypy_debug_catch_fatal_exception = rffi.llexternal('pypy_debug_catch_fatal_exception', [], lltype.Void)
 
-def entrypoint(key, argtypes, c_name=None, relax=True):
+def entrypoint(key, argtypes, c_name=None, relax=False):
     """ Note: entrypoint should call llop.gc_stack_bottom on it's own.
     That's necessary for making it work with asmgcc and hence JIT
 


More information about the pypy-commit mailing list