[pypy-commit] pypy improve-consecutive-dict-lookups: fix

fijal noreply at buildbot.pypy.org
Wed Mar 19 21:31:32 CET 2014


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: improve-consecutive-dict-lookups
Changeset: r70099:498fe7267231
Date: 2014-03-19 22:30 +0200
http://bitbucket.org/pypy/pypy/changeset/498fe7267231/

Log:	fix

diff --git a/rpython/jit/metainterp/virtualizable.py b/rpython/jit/metainterp/virtualizable.py
--- a/rpython/jit/metainterp/virtualizable.py
+++ b/rpython/jit/metainterp/virtualizable.py
@@ -302,7 +302,7 @@
         self.clear_vable_ptr = self.warmrunnerdesc.helper_func(
             FUNCPTR, self.clear_vable_token)
         FUNC = FUNCPTR.TO
-        ei = EffectInfo([], [], [], [], EffectInfo.EF_CANNOT_RAISE,
+        ei = EffectInfo([], [], [], [], [], [], EffectInfo.EF_CANNOT_RAISE,
                         can_invalidate=False,
                         oopspecindex=EffectInfo.OS_JIT_FORCE_VIRTUALIZABLE)
 


More information about the pypy-commit mailing list