[pypy-svn] r52100 - pypy/dist/pypy/translator/c/gcc
fijal at codespeak.net
fijal at codespeak.net
Mon Mar 3 19:23:28 CET 2008
Author: fijal
Date: Mon Mar 3 19:23:22 2008
New Revision: 52100
Modified:
pypy/dist/pypy/translator/c/gcc/trackgcroot.py
Log:
add cwtl to list of ignored ops
Modified: pypy/dist/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/dist/pypy/translator/c/gcc/trackgcroot.py (original)
+++ pypy/dist/pypy/translator/c/gcc/trackgcroot.py Mon Mar 3 19:23:22 2008
@@ -417,7 +417,7 @@
IGNORE_OPS_WITH_PREFIXES = dict.fromkeys([
'cmp', 'test', 'set', 'sahf', 'cltd', 'cld', 'std',
- 'rep', 'movs', 'lods', 'stos', 'scas',
+ 'rep', 'movs', 'lods', 'stos', 'scas', 'cwtl',
# floating-point operations cannot produce GC pointers
'f',
# arithmetic operations should not produce GC pointers
More information about the pypy-svn
mailing list