[pypy-svn] r53375 - pypy/branch/jit-hotpath/pypy/translator

arigo at codespeak.net arigo at codespeak.net
Sat Apr 5 09:36:47 CEST 2008


Author: arigo
Date: Sat Apr  5 09:36:46 2008
New Revision: 53375

Modified:
   pypy/branch/jit-hotpath/pypy/translator/driver.py
Log:
Need to mention the ia32 backend here.


Modified: pypy/branch/jit-hotpath/pypy/translator/driver.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/translator/driver.py	(original)
+++ pypy/branch/jit-hotpath/pypy/translator/driver.py	Sat Apr  5 09:36:46 2008
@@ -422,6 +422,9 @@
         if cpu == 'i386':
             from pypy.jit.codegen.i386.rgenop import RI386GenOp as RGenOp
             RGenOp.MC_SIZE = 32 * 1024 * 1024
+        elif cpu == 'ia32':
+            from pypy.jit.codegen.ia32.rgenop import RI386GenOp as RGenOp
+            RGenOp.MC_SIZE = 32 * 1024 * 1024
         elif cpu == 'ppc':
             from pypy.jit.codegen.ppc.rgenop import RPPCGenOp as RGenOp
             RGenOp.MC_SIZE = 32 * 1024 * 1024


More information about the pypy-svn mailing list