Author: Benjamin Peterson <[email protected]>
Branch: 
Changeset: r44561:ee5c8f0a4c76
Date: 2011-05-27 20:26 -0500
http://bitbucket.org/pypy/pypy/changeset/ee5c8f0a4c76/

Log:    BUILD_SET is @unroll_safe

diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py
--- a/pypy/interpreter/pyopcode.py
+++ b/pypy/interpreter/pyopcode.py
@@ -1089,6 +1089,7 @@
         w_dict = self.space.newdict()
         self.pushvalue(w_dict)
 
+    @jit.unroll_safe
     def BUILD_SET(self, itemcount, next_instr):
         w_set = self.space.call_function(self.space.w_set)
         if itemcount:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to