[pypy-svn] r70544 - pypy/branch/c-traceback/pypy/rpython/lltypesystem

arigo at codespeak.net arigo at codespeak.net
Tue Jan 12 19:07:10 CET 2010


Author: arigo
Date: Tue Jan 12 19:07:09 2010
New Revision: 70544

Modified:
   pypy/branch/c-traceback/pypy/rpython/lltypesystem/lloperation.py
Log:
Oups.


Modified: pypy/branch/c-traceback/pypy/rpython/lltypesystem/lloperation.py
==============================================================================
--- pypy/branch/c-traceback/pypy/rpython/lltypesystem/lloperation.py	(original)
+++ pypy/branch/c-traceback/pypy/rpython/lltypesystem/lloperation.py	Tue Jan 12 19:07:09 2010
@@ -87,7 +87,6 @@
     def is_pure(self, args_v):
         return (self.canfold or                # canfold => pure operation
                 self is llop.debug_assert or   # debug_assert is pure enough
-                self is llop.debug_assert_with_tb or
                                                # reading from immutable
                 (self in (llop.getfield, llop.getarrayitem) and
                  args_v[0].concretetype.TO._hints.get('immutable')) or



More information about the Pypy-commit mailing list