[pypy-commit] pypy vref-copy: fix the test, thanks armin

fijal noreply at buildbot.pypy.org
Thu Aug 23 14:24:24 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: vref-copy
Changeset: r56823:bed31ad356d3
Date: 2012-08-23 14:24 +0200
http://bitbucket.org/pypy/pypy/changeset/bed31ad356d3/

Log:	fix the test, thanks armin

diff --git a/pypy/jit/codewriter/effectinfo.py b/pypy/jit/codewriter/effectinfo.py
--- a/pypy/jit/codewriter/effectinfo.py
+++ b/pypy/jit/codewriter/effectinfo.py
@@ -234,7 +234,8 @@
 class VirtualizableAnalyzer(BoolGraphAnalyzer):
     def analyze_simple_operation(self, op, graphinfo):
         return op.opname in ('jit_force_virtualizable',
-                             'jit_force_virtual')
+                             'jit_force_virtual',
+                             'jit_vref_getfield')
 
 class QuasiImmutAnalyzer(BoolGraphAnalyzer):
     def analyze_simple_operation(self, op, graphinfo):


More information about the pypy-commit mailing list