[pypy-svn] r67850 - pypy/trunk/pypy/jit/backend/cli

antocuni at codespeak.net antocuni at codespeak.net
Wed Sep 23 13:54:50 CEST 2009


Author: antocuni
Date: Wed Sep 23 13:54:49 2009
New Revision: 67850

Modified:
   pypy/trunk/pypy/jit/backend/cli/runner.py
Log:
rpython fix


Modified: pypy/trunk/pypy/jit/backend/cli/runner.py
==============================================================================
--- pypy/trunk/pypy/jit/backend/cli/runner.py	(original)
+++ pypy/trunk/pypy/jit/backend/cli/runner.py	Wed Sep 23 13:54:49 2009
@@ -175,6 +175,7 @@
         return BoxObj(ootype.cast_to_object(res))
 
     def do_instanceof(self, instancebox, typedescr):
+        assert isinstance(typedescr, TypeDescr)
         return typedescr.instanceof(instancebox)
 
     def do_getfield_gc(self, instancebox, fielddescr):



More information about the Pypy-commit mailing list