[pypy-svn] r65982 - pypy/branch/pyjitpl5/pypy/module/pypyjit

fijal at codespeak.net fijal at codespeak.net
Fri Jun 26 01:44:42 CEST 2009


Author: fijal
Date: Fri Jun 26 01:44:41 2009
New Revision: 65982

Modified:
   pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
Log:
typo :-/


Modified: pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py	(original)
+++ pypy/branch/pyjitpl5/pypy/module/pypyjit/interp_jit.py	Fri Jun 26 01:44:41 2009
@@ -29,7 +29,7 @@
 
 def can_inline(next_instr, bytecode):
     if we_are_translated():
-        bytecode = cast_base_ptr_to_instance(Pycode, bytecode)
+        bytecode = cast_base_ptr_to_instance(PyCode, bytecode)
     co_code = bytecode.co_code
     next_instr = 0
     while next_instr < len(co_code):



More information about the Pypy-commit mailing list