[pypy-commit] pypy ppc-jit-backend: (bivab, hager): remove comment, don't call assemble

hager noreply at buildbot.pypy.org
Thu Mar 1 13:08:47 CET 2012


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r53047:fc6ad30e4bbf
Date: 2012-03-01 04:04 -0800
http://bitbucket.org/pypy/pypy/changeset/fc6ad30e4bbf/

Log:	(bivab, hager): remove comment, don't call assemble

diff --git a/pypy/jit/backend/ppc/codebuilder.py b/pypy/jit/backend/ppc/codebuilder.py
--- a/pypy/jit/backend/ppc/codebuilder.py
+++ b/pypy/jit/backend/ppc/codebuilder.py
@@ -1098,10 +1098,9 @@
             self.sld(target_reg, from_reg, numbit_reg)
 
     def prepare_insts_blocks(self, show=False):
-        self.assemble(show)
         insts = self.insts
         for inst in insts:
-            self.write32(inst)#.assemble())
+            self.write32(inst)
 
     def _dump_trace(self, addr, name, formatter=-1):
         if not we_are_translated():


More information about the pypy-commit mailing list