[pypy-svn] r76836 - pypy/trunk/pypy/translator/c/gcc

afa at codespeak.net afa at codespeak.net
Thu Sep 2 15:29:08 CEST 2010


Author: afa
Date: Thu Sep  2 15:29:04 2010
New Revision: 76836

Modified:
   pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
Log:
A new x86 instruction I'd never seen before (Convert Word to Extended Doubleword)
we may ignore it.


Modified: pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/trunk/pypy/translator/c/gcc/trackgcroot.py	(original)
+++ pypy/trunk/pypy/translator/c/gcc/trackgcroot.py	Thu Sep  2 15:29:04 2010
@@ -375,7 +375,7 @@
 
     IGNORE_OPS_WITH_PREFIXES = dict.fromkeys([
         'cmp', 'test', 'set', 'sahf', 'lahf', 'cltd', 'cld', 'std',
-        'rep', 'movs', 'lods', 'stos', 'scas', 'cwtl', 'prefetch',
+        'rep', 'movs', 'lods', 'stos', 'scas', 'cwtl', 'cwde', 'prefetch',
         # floating-point operations cannot produce GC pointers
         'f',
         'cvt', 'ucomi', 'comi', 'subs', 'subp' , 'adds', 'addp', 'xorp',



More information about the Pypy-commit mailing list