[pypy-svn] r24988 - in pypy/branch/explicit-exceptions/translator/c: . src

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Mar 25 01:14:42 CET 2006


Author: cfbolz
Date: Sat Mar 25 01:14:39 2006
New Revision: 24988

Modified:
   pypy/branch/explicit-exceptions/translator/c/src/ll_stackless.h
   pypy/branch/explicit-exceptions/translator/c/stackless.py
Log:
fix stackless typos introduced by the big macro rewrite


Modified: pypy/branch/explicit-exceptions/translator/c/src/ll_stackless.h
==============================================================================
--- pypy/branch/explicit-exceptions/translator/c/src/ll_stackless.h	(original)
+++ pypy/branch/explicit-exceptions/translator/c/src/ll_stackless.h	Sat Mar 25 01:14:39 2006
@@ -57,6 +57,7 @@
             if (slp_frame_stack_bottom)     \
                 goto unwind_label;          \
             resume_label:                   \
+            ;                               \
             } while (0)
 #endif
 

Modified: pypy/branch/explicit-exceptions/translator/c/stackless.py
==============================================================================
--- pypy/branch/explicit-exceptions/translator/c/stackless.py	(original)
+++ pypy/branch/explicit-exceptions/translator/c/stackless.py	Sat Mar 25 01:14:39 2006
@@ -335,7 +335,7 @@
 
         # add the checks for the unwinding case just after the directcall
         # in the source
-        return 'StacklessUnwindAndRPyExceptionHandling(%s,%s,%s);' % (
+        return 'StacklessUnwindAndRPyExceptionHandling(%s,%s);' % (
             savelabel, resumelabel)
 
     def OP_YIELD_CURRENT_FRAME_TO_CALLER(self, op):



More information about the Pypy-commit mailing list