[pypy-commit] pypy vecopt: resolved typo in pypy_c test

plan_rich noreply at buildbot.pypy.org
Thu Jul 9 09:27:57 CEST 2015


Author: Richard Plangger <rich at pasra.at>
Branch: vecopt
Changeset: r78499:e6096e85113e
Date: 2015-07-08 11:39 +0200
http://bitbucket.org/pypy/pypy/changeset/e6096e85113e/

Log:	resolved typo in pypy_c test

diff --git a/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py b/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py
--- a/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py
@@ -7,7 +7,7 @@
 class TestMicroNumPy(BaseTestPyPyC):
 
     arith_comb = [('+','float','float', 4*3427,   3427, 1.0,3.0),
-             ('+','float','int',   9*7844,   7843, 4.0,5.0),
+             ('+','float','int',   9*7843,   7843, 4.0,5.0),
              ('+','int','float',   8*2571,   2571, 9.0,-1.0),
              ('+','float','int',   -18*2653,   2653, 4.0,-22.0),
              ('+','int','int',     -1*1499,   1499, 24.0,-25.0),
diff --git a/rpython/jit/metainterp/optimizeopt/schedule.py b/rpython/jit/metainterp/optimizeopt/schedule.py
--- a/rpython/jit/metainterp/optimizeopt/schedule.py
+++ b/rpython/jit/metainterp/optimizeopt/schedule.py
@@ -258,7 +258,7 @@
         self.sched_data = sched_data
         self.preamble_ops = oplist
         self.costmodel = sched_data.costmodel
-        #self.update_input_output(pack)
+        #
         self.input_type = pack.input_type
         self.output_type = pack.output_type
         #


More information about the pypy-commit mailing list