Author: Richard Plangger <planri...@gmail.com>
Branch: s390x-backend
Changeset: r81761:e8159a73d818
Date: 2016-01-14 14:37 +0100
http://bitbucket.org/pypy/pypy/changeset/e8159a73d818/

Log:    removed print statements

diff --git a/rpython/jit/backend/test/zll_stress.py 
b/rpython/jit/backend/test/zll_stress.py
--- a/rpython/jit/backend/test/zll_stress.py
+++ b/rpython/jit/backend/test/zll_stress.py
@@ -19,5 +19,4 @@
     r = Random()
     r.jumpahead(piece*99999999)
     for i in range(piece*per_piece, (piece+1)*per_piece):
-        print("got", i, r.getstate())
         check_random_function(cpu, LLtypeOperationBuilder, r, i, 
total_iterations)
diff --git a/rpython/jit/backend/zarch/callbuilder.py 
b/rpython/jit/backend/zarch/callbuilder.py
--- a/rpython/jit/backend/zarch/callbuilder.py
+++ b/rpython/jit/backend/zarch/callbuilder.py
@@ -58,7 +58,6 @@
         gpr_regs = 0
         fpr_regs = 0
         stack_params = []
-        print("### prepare_arguemtns:")
         for i in range(num_args):
             loc = arglocs[i]
             if not arglocs[i].is_float():
@@ -66,10 +65,8 @@
                     non_float_locs.append(arglocs[i])
                     non_float_regs.append(self.GPR_ARGS[gpr_regs])
                     gpr_regs += 1
-                    print("  %d: %s at [%s];" % (i, arglocs[i], 
self.GPR_ARGS[gpr_regs-1]))
                 else:
                     stack_params.append(i)
-                    print("  %d: %s at stack[%d];" % (i,arglocs[i], 
len(stack_params)-1))
             else:
                 if fpr_regs < max_fpr_in_reg:
                     float_locs.append(arglocs[i])
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to