[pypy-svn] r68884 - pypy/branch/logging2/pypy/translator/c/gcc

arigo at codespeak.net arigo at codespeak.net
Sun Nov 1 10:50:01 CET 2009


Author: arigo
Date: Sun Nov  1 10:50:00 2009
New Revision: 68884

Modified:
   pypy/branch/logging2/pypy/translator/c/gcc/trackgcroot.py
Log:
Add an instruction.


Modified: pypy/branch/logging2/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/branch/logging2/pypy/translator/c/gcc/trackgcroot.py	(original)
+++ pypy/branch/logging2/pypy/translator/c/gcc/trackgcroot.py	Sun Nov  1 10:50:00 2009
@@ -588,7 +588,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', 'bt',
+        'bswap', 'bt', 'rdtsc',
         # zero-extending moves should not produce GC pointers
         'movz',
         ])



More information about the Pypy-commit mailing list