[pypy-svn] r65943 - pypy/branch/pyjitpl5/pypy/jit/tl/spli

fijal at codespeak.net fijal at codespeak.net
Wed Jun 24 23:58:20 CEST 2009


Author: fijal
Date: Wed Jun 24 23:58:19 2009
New Revision: 65943

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py
Log:
oops, complete nonsense


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py	Wed Jun 24 23:58:19 2009
@@ -128,7 +128,7 @@
         raise Return(self.pop())
 
     def LOAD_CONST(self, const_index, next_instr, code):
-        self.push(code.co_consts_w[const_index])
+        self.push(self.code.co_consts_w[const_index])
         return next_instr
 
     def BINARY_ADD(self, _, next_instr, code):



More information about the Pypy-commit mailing list