[pypy-svn] r34771 - pypy/dist/pypy/translator/js

fijal at codespeak.net fijal at codespeak.net
Mon Nov 20 11:36:49 CET 2006


Author: fijal
Date: Mon Nov 20 11:36:45 2006
New Revision: 34771

Modified:
   pypy/dist/pypy/translator/js/opcodes.py
Log:
Ignore debug_assert


Modified: pypy/dist/pypy/translator/js/opcodes.py
==============================================================================
--- pypy/dist/pypy/translator/js/opcodes.py	(original)
+++ pypy/dist/pypy/translator/js/opcodes.py	Mon Nov 20 11:36:45 2006
@@ -145,6 +145,8 @@
     'cast_float_to_int':        [PushAllArgs,_CastFun("Math.floor",1)],
     'cast_float_to_uint':       [PushAllArgs,_CastFun("Math.floor",1)],
     'truncate_longlong_to_int': CopyName,
+    
+    'debug_assert' : DoNothing,
 }
 
 for key, value in opcodes.iteritems():



More information about the Pypy-commit mailing list