[pypy-svn] r51857 - pypy/branch/jit-refactoring/pypy/jit/rainbow

arigo at codespeak.net arigo at codespeak.net
Mon Feb 25 20:00:53 CET 2008


Author: arigo
Date: Mon Feb 25 20:00:48 2008
New Revision: 51857

Modified:
   pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py
Log:
Fix comment.


Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py	(original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/interpreter.py	Mon Feb 25 20:00:48 2008
@@ -407,8 +407,8 @@
         self.frame.local_boxes = local_boxes
 
     def opimpl_make_new_greenvars(self):
-        # an opcode with a variable number of args
-        # num_args arg_old_1 arg_new_1 ...
+        # this uses a "green_varargs" argument, but we do the decoding
+        # manually for the fast case
         num = self.load_2byte()
         if num == 0 and len(self.frame.local_green) == 0:
             # fast (very common) case



More information about the Pypy-commit mailing list