[pypy-svn] pypy 32ptr-on-64bit: Bah :-(

arigo commits-noreply at bitbucket.org
Sun Apr 17 18:51:55 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 32ptr-on-64bit
Changeset: r43432:50f0de807154
Date: 2011-04-17 18:48 +0200
http://bitbucket.org/pypy/pypy/changeset/50f0de807154/

Log:	Bah :-(

diff --git a/pypy/jit/backend/llsupport/gc.py b/pypy/jit/backend/llsupport/gc.py
--- a/pypy/jit/backend/llsupport/gc.py
+++ b/pypy/jit/backend/llsupport/gc.py
@@ -523,7 +523,7 @@
             while i >= 0:
                 newarray[i] = self._callshapes[i]
                 i -= 1
-            lltype.free(self._callshapes, flavor='raw')
+            lltype.free(self._callshapes, flavor='raw', track_allocation=False)
         self._callshapes = newarray
         self._callshapes_maxlength = newlength
 


More information about the Pypy-commit mailing list