[pypy-svn] r43653 - pypy/dist/pypy/translator/c/src

cfbolz at codespeak.net cfbolz at codespeak.net
Fri May 25 22:30:24 CEST 2007


Author: cfbolz
Date: Fri May 25 22:30:23 2007
New Revision: 43653

Modified:
   pypy/dist/pypy/translator/c/src/stack.h
Log:
USE_STACKLESS does no longer exist


Modified: pypy/dist/pypy/translator/c/src/stack.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/stack.h	(original)
+++ pypy/dist/pypy/translator/c/src/stack.h	Fri May 25 22:30:23 2007
@@ -13,11 +13,7 @@
 
 void LL_stack_unwind(void)
 {
-#ifdef USE_STACKLESS
-    LL_stackless_stack_unwind();
-#else
 	RPyRaiseSimpleException(PyExc_RuntimeError, "Recursion limit exceeded");
-#endif
 }
 
 long _LL_stack_growing_direction(char *parent)



More information about the Pypy-commit mailing list