[pypy-svn] r17060 - pypy/dist/pypy/rpython

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Aug 29 20:24:44 CEST 2005


Author: cfbolz
Date: Mon Aug 29 20:24:43 2005
New Revision: 17060

Modified:
   pypy/dist/pypy/rpython/llinterp.py
Log:
oops, missing from the last checkin


Modified: pypy/dist/pypy/rpython/llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/llinterp.py	(original)
+++ pypy/dist/pypy/rpython/llinterp.py	Mon Aug 29 20:24:43 2005
@@ -295,6 +295,10 @@
         assert isinstance(flavor, str)
         return self.llt.malloc(obj, flavor=flavor)
 
+    def op_flavored_free(self, flavor, obj):
+        assert isinstance(flavor, str)
+        self.llt.free(obj, flavor=flavor)
+
     def op_getfield(self, obj, field):
         assert isinstance(obj, self.llt._ptr)
         result = getattr(obj, field)



More information about the Pypy-commit mailing list