[pypy-svn] r37426 - pypy/dist/pypy/translator/asm/ppcgen

mwh at codespeak.net mwh at codespeak.net
Sat Jan 27 13:56:59 CET 2007


Author: mwh
Date: Sat Jan 27 13:56:54 2007
New Revision: 37426

Modified:
   pypy/dist/pypy/translator/asm/ppcgen/ppc_assembler.py
Log:
yikes!  all shifts-with-immediates were misassembled!


Modified: pypy/dist/pypy/translator/asm/ppcgen/ppc_assembler.py
==============================================================================
--- pypy/dist/pypy/translator/asm/ppcgen/ppc_assembler.py	(original)
+++ pypy/dist/pypy/translator/asm/ppcgen/ppc_assembler.py	Sat Jan 27 13:56:54 2007
@@ -34,8 +34,8 @@
 XFL = Form("FM", "frB", "XO1", "Rc")
 XFX = Form("CRM", "rS", "XO1")
 
-MI = Form("rS", "rA", "SH", "MB", "ME", "Rc")
-MB = Form("rS", "rA", "rB", "MB", "ME", "Rc")
+MI = Form("rA", "rS", "SH", "MB", "ME", "Rc")
+MB = Form("rA", "rS", "rB", "MB", "ME", "Rc")
 
 
 class BasicPPCAssembler(Assembler):



More information about the Pypy-commit mailing list