[pypy-svn] r52230 - pypy/branch/jit-refactoring/pypy/jit/rainbow
arigo at codespeak.net
arigo at codespeak.net
Thu Mar 6 19:31:32 CET 2008
Author: arigo
Date: Thu Mar 6 19:31:32 2008
New Revision: 52230
Modified:
pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py
Log:
Typo.
Modified: pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py (original)
+++ pypy/branch/jit-refactoring/pypy/jit/rainbow/codewriter.py Thu Mar 6 19:31:32 2008
@@ -1483,7 +1483,7 @@
def assemble_labelpos(labelpos, interpreter, *args):
result = []
def emit_2byte(index):
- assert -32768 <= index < 32767
+ assert -32768 <= index < 32768
result.append(chr((index >> 8) & 0xff))
result.append(chr(index & 0xff))
for arg in args:
More information about the pypy-svn
mailing list