Author: Remi Meier <remi.me...@gmail.com>
Branch: copy-over-original2
Changeset: r403:7c66774a3b43
Date: 2013-07-16 14:40 +0200
http://bitbucket.org/pypy/stmgc/changeset/7c66774a3b43/

Log:    uncomment jumping forward in visit() again

diff --git a/c4/gcpage.c b/c4/gcpage.c
--- a/c4/gcpage.c
+++ b/c4/gcpage.c
@@ -354,14 +354,14 @@
             }
         }
 
-        /* if (!(obj->h_revision & 3)) { */
-        /*     /\* obj is neither a stub nor a most recent revision: */
-        /*        completely ignore obj->h_revision *\/ */
+        if (!(obj->h_revision & 3)) {
+            /* obj is neither a stub nor a most recent revision:
+               completely ignore obj->h_revision */
 
-        /*     obj = (gcptr)obj->h_revision; */
-        /*     assert(obj->h_tid & GCFLAG_PUBLIC); */
-        /*     prev_obj->h_revision = (revision_t)obj; */
-        /* } */
+            obj = (gcptr)obj->h_revision;
+            assert(obj->h_tid & GCFLAG_PUBLIC);
+            prev_obj->h_revision = (revision_t)obj;
+        }
         *pobj = obj;
         goto restart;
     }
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to