[pypy-svn] r40821 - pypy/dist/pypy/jit/timeshifter

pedronis at codespeak.net pedronis at codespeak.net
Tue Mar 20 12:15:30 CET 2007


Author: pedronis
Date: Tue Mar 20 12:15:28 2007
New Revision: 40821

Modified:
   pypy/dist/pypy/jit/timeshifter/rtimeshift.py
Log:
XXX about fragile assumption



Modified: pypy/dist/pypy/jit/timeshifter/rtimeshift.py
==============================================================================
--- pypy/dist/pypy/jit/timeshifter/rtimeshift.py	(original)
+++ pypy/dist/pypy/jit/timeshifter/rtimeshift.py	Tue Mar 20 12:15:28 2007
@@ -228,6 +228,8 @@
 
 def ll_genptreq(jitstate, argbox0, argbox1, reverse):
     builder = jitstate.curbuilder
+    # XXX this assumption is not completely valid in the presence
+    # of virtualizable
     if argbox0.content is not None or argbox1.content is not None:
         equal = argbox0.content is argbox1.content
         return rvalue.ll_fromvalue(jitstate, equal ^ reverse)



More information about the Pypy-commit mailing list