Author: Armin Rigo <[email protected]>
Branch: stm-thread-2
Changeset: r60180:521cbc238824
Date: 2013-01-18 16:58 +0100
http://bitbucket.org/pypy/pypy/changeset/521cbc238824/

Log:    These two flags are not referenced from C.

diff --git a/pypy/rpython/memory/gc/stmgc.py b/pypy/rpython/memory/gc/stmgc.py
--- a/pypy/rpython/memory/gc/stmgc.py
+++ b/pypy/rpython/memory/gc/stmgc.py
@@ -115,8 +115,8 @@
 GCFLAG_NOT_WRITTEN       = first_gcflag << 2     # keep in sync with et.h
 GCFLAG_LOCAL_COPY        = first_gcflag << 3     # keep in sync with et.h
 GCFLAG_VISITED           = first_gcflag << 4     # keep in sync with et.h
-GCFLAG_HASH_FIELD        = first_gcflag << 5     # keep in sync with et.h
-GCFLAG_NEW_HASH          = first_gcflag << 6     # keep in sync with et.h
+GCFLAG_HASH_FIELD        = first_gcflag << 5
+GCFLAG_NEW_HASH          = first_gcflag << 6
 
 GCFLAG_PREBUILT          = GCFLAG_GLOBAL | GCFLAG_NOT_WRITTEN
 REV_INITIAL              = r_uint(1)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to