[pypy-svn] r70527 - pypy/branch/jit-profiling/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Tue Jan 12 13:04:25 CET 2010


Author: fijal
Date: Tue Jan 12 13:04:24 2010
New Revision: 70527

Modified:
   pypy/branch/jit-profiling/pypy/rlib/_jit_vref.py
Log:
one more exception_cannot_occur


Modified: pypy/branch/jit-profiling/pypy/rlib/_jit_vref.py
==============================================================================
--- pypy/branch/jit-profiling/pypy/rlib/_jit_vref.py	(original)
+++ pypy/branch/jit-profiling/pypy/rlib/_jit_vref.py	Tue Jan 12 13:04:24 2010
@@ -46,6 +46,7 @@
     def rtype_simple_call(self, hop):
         [v] = hop.inputargs(self)
         v = hop.genop('jit_force_virtual', [v], resulttype = OBJECTPTR)
+        hop.exception_cannot_occur()
         return hop.genop('cast_pointer', [v], resulttype = hop.r_result)
 
     def convert_const(self, value):



More information about the Pypy-commit mailing list