Author: Armin Rigo <[email protected]>
Branch: continulet-jit-3
Changeset: r58305:ff19c249b0f4
Date: 2012-10-21 12:54 +0200
http://bitbucket.org/pypy/pypy/changeset/ff19c249b0f4/

Log:    Oups

diff --git a/pypy/jit/tool/oparser.py b/pypy/jit/tool/oparser.py
--- a/pypy/jit/tool/oparser.py
+++ b/pypy/jit/tool/oparser.py
@@ -45,8 +45,8 @@
     def clone(self):
         return FORCE_SPILL(self.OPNUM, self.getarglist()[:])
 
-    def copy_and_change(self, opnum):   # no arguments accepted
-        return self.clone()
+    def copy_and_change(self, opnum, args, result, descr):
+        return FORCE_SPILL(opnum, args, result, descr)
 
 
 def default_fail_descr(model, fail_args=None):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to