Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: jitframe-on-heap
Changeset: r60286:1cdcf8c757d7
Date: 2013-01-21 11:23 +0200
http://bitbucket.org/pypy/pypy/changeset/1cdcf8c757d7/

Log:    uh and in here

diff --git a/rpython/jit/backend/llsupport/llmodel.py 
b/rpython/jit/backend/llsupport/llmodel.py
--- a/rpython/jit/backend/llsupport/llmodel.py
+++ b/rpython/jit/backend/llsupport/llmodel.py
@@ -226,7 +226,9 @@
     def get_latest_descr(self, deadframe):
         deadframe = lltype.cast_opaque_ptr(jitframe.JITFRAMEPTR, deadframe)
         descr = deadframe.jf_descr
-        return history.AbstractDescr.show(self, descr)
+        res = history.AbstractDescr.show(self, descr)
+        assert isinstance(res, history.AbstractFailDescr)
+        return res
 
     def _decode_pos(self, deadframe, index):
         descr = self.get_latest_descr(deadframe)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to