[pypy-commit] pypy default: Disable those jitdrivers for now - they break translation

fijal noreply at buildbot.pypy.org
Thu Jul 21 17:48:43 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r45829:558c3a321a43
Date: 2011-07-21 17:48 +0200
http://bitbucket.org/pypy/pypy/changeset/558c3a321a43/

Log:	Disable those jitdrivers for now - they break translation

diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -272,8 +272,8 @@
         i = start
         j = 0
         while i < stop:
-            slice_driver1.jit_merge_point(signature=arr.signature,
-                    step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
+            #slice_driver1.jit_merge_point(signature=arr.signature,
+            #        step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
             storage[i] = arr.eval(j)
             j += 1
             i += step
@@ -282,8 +282,8 @@
         i = start
         j = 0
         while i > stop:
-            slice_driver2.jit_merge_point(signature=arr.signature,
-                    step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
+            #slice_driver2.jit_merge_point(signature=arr.signature,
+            #        step=step, stop=stop, i=i, j=j, arr=arr, storage=storage)
             storage[i] = arr.eval(j)
             j += 1
             i += step


More information about the pypy-commit mailing list