Author: Armin Rigo <[email protected]>
Branch: stmgc-c8-dictiter
Changeset: r80562:cc55e74842af
Date: 2015-11-06 06:58 +0000
http://bitbucket.org/pypy/pypy/changeset/cc55e74842af/

Log:    oops 2

diff --git a/rpython/translator/stm/funcgen.py 
b/rpython/translator/stm/funcgen.py
--- a/rpython/translator/stm/funcgen.py
+++ b/rpython/translator/stm/funcgen.py
@@ -412,7 +412,7 @@
     arg2 = funcgen.expr(op.args[2])
     result = funcgen.expr(op.result)
     return ('%s = stm_hashtable_iter_next(%s, %s, %s);' %
-            (arg0, arg1, arg2, result))
+            (result, arg0, arg1, arg2))
 
 def stm_hashtable_iter_tracefn(funcgen, op):
     arg0 = funcgen.expr(op.args[0])
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to