[pypy-commit] pypy jitframe-on-heap: fix test_oparser

fijal noreply at buildbot.pypy.org
Fri Mar 8 17:12:39 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r62244:bae92e3bf1c1
Date: 2013-03-08 17:57 +0200
http://bitbucket.org/pypy/pypy/changeset/bae92e3bf1c1/

Log:	fix test_oparser

diff --git a/rpython/jit/tool/oparser_model.py b/rpython/jit/tool/oparser_model.py
--- a/rpython/jit/tool/oparser_model.py
+++ b/rpython/jit/tool/oparser_model.py
@@ -48,9 +48,11 @@
 
         class BasicFailDescr(object):
             I_am_a_descr = True
+            final_descr = False
 
         class BasicFinalDescr(object):
             I_am_a_descr = True
+            final_descr = True
 
         class Box(object):
             _counter = 0


More information about the pypy-commit mailing list