[pypy-svn] r22771 - pypy/dist/pypy/jit

pedronis at codespeak.net pedronis at codespeak.net
Sat Jan 28 12:39:59 CET 2006


Author: pedronis
Date: Sat Jan 28 12:39:56 2006
New Revision: 22771

Modified:
   pypy/dist/pypy/jit/hintmodel.py
Log:
(arre, arigo, pedronis)

missing comment.



Modified: pypy/dist/pypy/jit/hintmodel.py
==============================================================================
--- pypy/dist/pypy/jit/hintmodel.py	(original)
+++ pypy/dist/pypy/jit/hintmodel.py	Sat Jan 28 12:39:56 2006
@@ -54,7 +54,7 @@
 class __extend__(SomeLLAbstractConstant):
 
     def hint(hs_c1, hs_flags):
-        if hs_flags.const.get('variable', False):
+        if hs_flags.const.get('variable', False): # only for testing purposes!!!
             return SomeLLAbstractValue(hs_c1.concretetype)
         assert hs_flags.const['concrete']
         for o in hs_c1.origins:



More information about the Pypy-commit mailing list