[pypy-svn] r50163 - pypy/dist/pypy/rlib

arigo at codespeak.net arigo at codespeak.net
Fri Dec 28 19:33:13 CET 2007


Author: arigo
Date: Fri Dec 28 19:33:11 2007
New Revision: 50163

Modified:
   pypy/dist/pypy/rlib/rstack.py
Log:
Tweak - avoids a wrapper level, less work for GCC's inliner probably.


Modified: pypy/dist/pypy/rlib/rstack.py
==============================================================================
--- pypy/dist/pypy/rlib/rstack.py	(original)
+++ pypy/dist/pypy/rlib/rstack.py	Fri Dec 28 19:33:11 2007
@@ -37,6 +37,7 @@
 
 stack_too_big = rffi.llexternal('LL_stack_too_big', [], rffi.INT,
                                 compilation_info=compilation_info,
+                                _nowrapper=True,
                                 _callable=lambda: 0)
 
 def stack_check():



More information about the Pypy-commit mailing list