[pypy-svn] r78532 - pypy/branch/jit-unroll-loops/pypy/jit/tool

hakanardo at codespeak.net hakanardo at codespeak.net
Sat Oct 30 16:53:26 CEST 2010


Author: hakanardo
Date: Sat Oct 30 16:53:25 2010
New Revision: 78532

Modified:
   pypy/branch/jit-unroll-loops/pypy/jit/tool/oparser.py
Log:
(hakanardo, cfbolz, arigo) fixed merge

Modified: pypy/branch/jit-unroll-loops/pypy/jit/tool/oparser.py
==============================================================================
--- pypy/branch/jit-unroll-loops/pypy/jit/tool/oparser.py	(original)
+++ pypy/branch/jit-unroll-loops/pypy/jit/tool/oparser.py	Sat Oct 30 16:53:25 2010
@@ -31,6 +31,9 @@
     def getopnum(self):
         return self.OPNUM
 
+    def clone(self):
+        return ESCAPE_OP(self.OPNUM, self.getarglist()[:], self.result, self.getdescr())
+
 class ExtendedTreeLoop(TreeLoop):
 
     def getboxes(self):



More information about the Pypy-commit mailing list