Author: Maciej Fijalkowski <[email protected]>
Branch: resume-refactor
Changeset: r68936:8207661b5b10
Date: 2014-01-25 09:20 +0100
http://bitbucket.org/pypy/pypy/changeset/8207661b5b10/
Log: fix
diff --git a/rpython/jit/backend/llgraph/runner.py
b/rpython/jit/backend/llgraph/runner.py
--- a/rpython/jit/backend/llgraph/runner.py
+++ b/rpython/jit/backend/llgraph/runner.py
@@ -786,8 +786,8 @@
self.framecontent = {}
i = 0
if isinstance(newvalues, dict):
- for k, v in newvalues.iteritems():
- self.setenv(newargs[k], v)
+ for arg in newargs:
+ self.setenv(arg, newvalues[self.numbering[arg]])
else:
for value in newvalues:
assert value is not None
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit