[pypy-svn] r44152 - pypy/branch/prolog-bytecode/pypy/rpython/lltypesystem

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Jun 11 18:08:37 CEST 2007


Author: cfbolz
Date: Mon Jun 11 18:08:37 2007
New Revision: 44152

Modified:
   pypy/branch/prolog-bytecode/pypy/rpython/lltypesystem/rstr.py
Log:
don't look into string equality - leads to funny inlined graphs.


Modified: pypy/branch/prolog-bytecode/pypy/rpython/lltypesystem/rstr.py
==============================================================================
--- pypy/branch/prolog-bytecode/pypy/rpython/lltypesystem/rstr.py	(original)
+++ pypy/branch/prolog-bytecode/pypy/rpython/lltypesystem/rstr.py	Mon Jun 11 18:08:37 2007
@@ -333,6 +333,7 @@
             j += 1
 
         return True
+    ll_streq._pure_function_ = True
 
     def ll_startswith(s1, s2):
         len1 = len(s1.chars)


More information about the pypy-svn mailing list