[pypy-svn] r36561 - pypy/dist/pypy/jit/codegen/ppc

mwh at codespeak.net mwh at codespeak.net
Fri Jan 12 13:40:01 CET 2007


Author: mwh
Date: Fri Jan 12 13:39:59 2007
New Revision: 36561

Modified:
   pypy/dist/pypy/jit/codegen/ppc/rgenop.py
Log:
uh what the ppc isa doesn't have plain andi?


Modified: pypy/dist/pypy/jit/codegen/ppc/rgenop.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/ppc/rgenop.py	(original)
+++ pypy/dist/pypy/jit/codegen/ppc/rgenop.py	Fri Jan 12 13:39:59 2007
@@ -754,7 +754,7 @@
         return self._compare('ge', gv_x, gv_y)
 
     def op_int_and(self, gv_x, gv_y):
-        return self._arg_arg_op_with_imm(gv_x, gv_y, True, _PPC.and_, _PPC.andi)
+        return self._arg_arg_op(gv_x, gv_y, _PPC.and_)
 
     def op_int_or(self, gv_x, gv_y):
         return self._arg_arg_op_with_imm(gv_x, gv_y, True, _PPC.or_, _PPC.ori)



More information about the Pypy-commit mailing list