[pypy-svn] r53206 - pypy/branch/jit-hotpath/pypy/jit/codegen/i386

fijal at codespeak.net fijal at codespeak.net
Mon Mar 31 19:38:48 CEST 2008


Author: fijal
Date: Mon Mar 31 19:38:47 2008
New Revision: 53206

Modified:
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py
Log:
another test mode


Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py	Mon Mar 31 19:38:47 2008
@@ -423,7 +423,8 @@
 TEST.mode2(MODRM, REG,   ['\x85', register(2,8), modrm(1)])
 TEST.mode2(EAX,   IMM32, ['\xA9', immediate(2)])
 TEST.mode2(MODRM, IMM32, ['\xF7', orbyte(0<<3), modrm(1), immediate(2)])
-TEST.mode2(AL,  IMM8,  ['\xA8', immediate(2,'b')])
+TEST.mode2(AL,    IMM8,  ['\xA8', immediate(2,'b')])
+TEST.mode2(REG8,  IMM8,  ['\xF6', register(1,1,'b'), '\xC0', immediate(2,'b')])
 
 INT = Instruction()
 INT.mode1(IMM8, ['\xCD', immediate(1, 'b')])



More information about the Pypy-commit mailing list