[pypy-svn] r73727 - pypy/branch/decouple-host-opcodes/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Wed Apr 14 06:18:28 CEST 2010


Author: fijal
Date: Wed Apr 14 06:18:26 2010
New Revision: 73727

Modified:
   pypy/branch/decouple-host-opcodes/pypy/interpreter/pyopcode.py
Log:
Kill the pointless check that killed JIT tests


Modified: pypy/branch/decouple-host-opcodes/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/branch/decouple-host-opcodes/pypy/interpreter/pyopcode.py	(original)
+++ pypy/branch/decouple-host-opcodes/pypy/interpreter/pyopcode.py	Wed Apr 14 06:18:26 2010
@@ -163,8 +163,6 @@
     @jit.unroll_safe
     def dispatch_bytecode(self, co_code, next_instr, ec):
         space = self.space
-        # PyFrame is really an abstract class
-        assert self.__class__ is not pyframe.PyFrame
         while True:
             self.last_instr = intmask(next_instr)
             if not jit.we_are_jitted():



More information about the Pypy-commit mailing list