[pypy-svn] r58684 - pypy/branch/gc-experiments/pypy/rpython

fijal at codespeak.net fijal at codespeak.net
Mon Oct 6 19:01:36 CEST 2008


Author: fijal
Date: Mon Oct  6 19:01:34 2008
New Revision: 58684

Modified:
   pypy/branch/gc-experiments/pypy/rpython/llinterp.py
Log:
op_raw_memmove implementation for llinterp


Modified: pypy/branch/gc-experiments/pypy/rpython/llinterp.py
==============================================================================
--- pypy/branch/gc-experiments/pypy/rpython/llinterp.py	(original)
+++ pypy/branch/gc-experiments/pypy/rpython/llinterp.py	Mon Oct  6 19:01:34 2008
@@ -895,6 +895,8 @@
         checkadr(toaddr)
         llmemory.raw_memcopy(fromaddr, toaddr, size)
 
+    op_raw_memmove = op_raw_memcopy # this is essentially the same here
+
     def op_raw_load(self, addr, typ, offset):
         checkadr(addr)
         value = getattr(addr, str(typ).lower())[offset]



More information about the Pypy-commit mailing list