[pypy-svn] r33219 - pypy/dist/pypy/jit/codegen/i386

pedronis at codespeak.net pedronis at codespeak.net
Thu Oct 12 12:25:50 CEST 2006


Author: pedronis
Date: Thu Oct 12 12:25:48 2006
New Revision: 33219

Modified:
   pypy/dist/pypy/jit/codegen/i386/codebuf.py
Log:
fix for the test_interp* tests. If we want to tests the flexswitch this way, we probably need a different
InMemoryCodeBuidler class too.



Modified: pypy/dist/pypy/jit/codegen/i386/codebuf.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/codebuf.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/codebuf.py	Thu Oct 12 12:25:48 2006
@@ -112,3 +112,6 @@
 
     def tell(self):
         return self._base + 2 * self._pos
+
+    def done(self):
+        pass



More information about the Pypy-commit mailing list