[pypy-svn] r64552 - pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Tue Apr 21 20:02:49 CEST 2009


Author: fijal
Date: Tue Apr 21 20:02:48 2009
New Revision: 64552

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/codewriter.py
Log:
who is using lshift_val??? Implement it dumbly as only lshift, need fixes
for all of those.


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/codewriter.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/codewriter.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/metainterp/codewriter.py	Tue Apr 21 20:02:48 2009
@@ -589,6 +589,10 @@
         # XXX handle ValueError
         self.default_serialize_op(op, 'int_lshift_ovf')
 
+    def serialize_op_int_lshift_val(self, op):
+        # XXX handle ValueError
+        self.default_serialize_op(op, 'int_lshift')
+
     def serialize_op_hint(self, op):
         hints = op.args[1].value
         if hints.get('promote') and op.args[0].concretetype is not lltype.Void:



More information about the Pypy-commit mailing list