[pypy-commit] pypy ppc-jit-backend: Ooops, forgot to remove print.

hager noreply at buildbot.pypy.org
Mon Oct 17 19:07:14 CEST 2011


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r48148:db91d415ffd5
Date: 2011-10-17 18:47 +0200
http://bitbucket.org/pypy/pypy/changeset/db91d415ffd5/

Log:	Ooops, forgot to remove print.

diff --git a/pypy/jit/backend/ppc/ppcgen/opassembler.py b/pypy/jit/backend/ppc/ppcgen/opassembler.py
--- a/pypy/jit/backend/ppc/ppcgen/opassembler.py
+++ b/pypy/jit/backend/ppc/ppcgen/opassembler.py
@@ -35,7 +35,6 @@
         elif l1.is_imm():
             self.mc.subi(res.value, l0.value, l1.value)
         else:
-            print "unten"
             self.mc.sub(res.value, l0.value, l1.value)
    
     emit_int_le = gen_emit_cmp_op(c.LE)   


More information about the pypy-commit mailing list