[pypy-svn] r66431 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Mon Jul 20 14:33:36 CEST 2009


Author: benjamin
Date: Mon Jul 20 14:33:35 2009
New Revision: 66431

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py
Log:
add NOP to the list

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/assemble.py	Mon Jul 20 14:33:35 2009
@@ -317,6 +317,8 @@
 
 
 _static_opcode_stack_effects = {
+    ops.NOP,
+
     ops.POP_TOP : -1,
     ops.ROT_TWO : 0,
     ops.ROT_THREE : 0,



More information about the Pypy-commit mailing list