[pypy-svn] r31675 - pypy/dist/pypy/translator/stackless

mwh at codespeak.net mwh at codespeak.net
Sat Aug 26 13:02:18 CEST 2006


Author: mwh
Date: Sat Aug 26 13:02:17 2006
New Revision: 31675

Modified:
   pypy/dist/pypy/translator/stackless/transform.py
Log:
fix stackless build.  why on earth did this start failing a few days ago?
oh well.


Modified: pypy/dist/pypy/translator/stackless/transform.py
==============================================================================
--- pypy/dist/pypy/translator/stackless/transform.py	(original)
+++ pypy/dist/pypy/translator/stackless/transform.py	Sat Aug 26 13:02:17 2006
@@ -260,6 +260,8 @@
             return True
         elif op.opname == 'resume_state_invoke':
             return True
+        elif op.opname == 'resume_state_create':
+            return True
         return self.stackless_gc and LL_OPERATIONS[op.opname].canunwindgc
 
     def analyze_external_call(self, op):



More information about the Pypy-commit mailing list