[pypy-svn] r67211 - pypy/branch/pyjitpl5/pypy/translator/c/gcc

arigo at codespeak.net arigo at codespeak.net
Wed Aug 26 12:48:12 CEST 2009


Author: arigo
Date: Wed Aug 26 12:48:11 2009
New Revision: 67211

Modified:
   pypy/branch/pyjitpl5/pypy/translator/c/gcc/trackgcroot.py
Log:
Add an operation to ignore.


Modified: pypy/branch/pyjitpl5/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/translator/c/gcc/trackgcroot.py	(original)
+++ pypy/branch/pyjitpl5/pypy/translator/c/gcc/trackgcroot.py	Wed Aug 26 12:48:11 2009
@@ -515,7 +515,7 @@
         # arithmetic operations should not produce GC pointers
         'inc', 'dec', 'not', 'neg', 'or', 'and', 'sbb', 'adc',
         'shl', 'shr', 'sal', 'sar', 'rol', 'ror', 'mul', 'imul', 'div', 'idiv',
-        'bswap',
+        'bswap', 'bt',
         # zero-extending moves should not produce GC pointers
         'movz',
         ])



More information about the Pypy-commit mailing list