[pypy-svn] r30124 - pypy/dist/pypy/translator/cli

antocuni at codespeak.net antocuni at codespeak.net
Mon Jul 17 15:18:05 CEST 2006


Author: antocuni
Date: Mon Jul 17 15:18:00 2006
New Revision: 30124

Modified:
   pypy/dist/pypy/translator/cli/opcodes.py
Log:
More llong operations.



Modified: pypy/dist/pypy/translator/cli/opcodes.py
==============================================================================
--- pypy/dist/pypy/translator/cli/opcodes.py	(original)
+++ pypy/dist/pypy/translator/cli/opcodes.py	Mon Jul 17 15:18:00 2006
@@ -191,6 +191,10 @@
     'llong_gt':                 'cgt',
     'llong_ge':                 _not('clt'),
     'llong_and':                'and',
+    'llong_or':                 'or',
+    'llong_lshift':             'shl',
+    'llong_rshift':             'shr',
+    'llong_xor':                'xor',
 
     'ullong_is_true':            [PushAllArgs, 'ldc.i8 0', 'cgt.un'],
     'ullong_neg':                None,



More information about the Pypy-commit mailing list