[pypy-svn] r65726 - pypy/branch/pyjitpl5-experiments/pypy/jit/backend/llvm

arigo at codespeak.net arigo at codespeak.net
Wed Jun 10 17:18:23 CEST 2009


Author: arigo
Date: Wed Jun 10 17:18:22 2009
New Revision: 65726

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/backend/llvm/runner.py
Log:
Documentation.


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/backend/llvm/runner.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/backend/llvm/runner.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/backend/llvm/runner.py	Wed Jun 10 17:18:22 2009
@@ -707,8 +707,8 @@
     _generated_mp = None
     #
     def __init__(self, args_indices, res_index):
-        self.args_indices = args_indices
-        self.res_index = res_index
+        self.args_indices = args_indices   # indices in cpu.types_by_index
+        self.res_index = res_index         # index in cpu.types_by_index, or -1
 
 # ____________________________________________________________
 



More information about the Pypy-commit mailing list