[pypy-svn] r61734 - pypy/branch/pyjitpl5/pypy/translator/c

arigo at codespeak.net arigo at codespeak.net
Wed Feb 11 15:35:27 CET 2009


Author: arigo
Date: Wed Feb 11 15:35:26 2009
New Revision: 61734

Modified:
   pypy/branch/pyjitpl5/pypy/translator/c/funcgen.py
Log:
(fijal, arigo)
Another port from oo-jit.


Modified: pypy/branch/pyjitpl5/pypy/translator/c/funcgen.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/translator/c/funcgen.py	(original)
+++ pypy/branch/pyjitpl5/pypy/translator/c/funcgen.py	Wed Feb 11 15:35:26 2009
@@ -772,4 +772,8 @@
     def OP_IS_EARLY_CONSTANT(self, op):
         return self.expr(op.result)  + ' = 0;' # Allways false
 
+    def OP_JIT_MARKER(self, op):
+        return '/* JIT_MARKER %s */' % op
+
+
 assert not USESLOTS or '__dict__' not in dir(FunctionCodeGenerator)



More information about the Pypy-commit mailing list