[pypy-svn] r49684 - pypy/branch/pypy-gc-traceopt/rpython/memory/gc
arigo at codespeak.net
arigo at codespeak.net
Wed Dec 12 22:01:00 CET 2007
Author: arigo
Date: Wed Dec 12 22:00:54 2007
New Revision: 49684
Modified:
pypy/branch/pypy-gc-traceopt/rpython/memory/gc/traceopt.py
Log:
This doesn't just work.
Modified: pypy/branch/pypy-gc-traceopt/rpython/memory/gc/traceopt.py
==============================================================================
--- pypy/branch/pypy-gc-traceopt/rpython/memory/gc/traceopt.py (original)
+++ pypy/branch/pypy-gc-traceopt/rpython/memory/gc/traceopt.py Wed Dec 12 22:00:54 2007
@@ -36,7 +36,7 @@
for offset in unroll_offsets:
callback(gc, obj + offset)
tracer._annspecialcase_ = 'specialize:arg(2)'
- tracer._inline_ = True
+ #xxx force inline tracer
def compatible_shape(gc, typeid):
if gc.is_varsize(typeid):
@@ -50,7 +50,7 @@
return False
i += 1
return True
- compatible_shape._inline_ = True
+ #xxx force inline compatible_shape
return compatible_shape, tracer
More information about the Pypy-commit
mailing list