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

afa at codespeak.net afa at codespeak.net
Mon Feb 8 18:27:38 CET 2010


Author: afa
Date: Mon Feb  8 18:27:35 2010
New Revision: 71173

Modified:
   pypy/trunk/pypy/translator/c/gcc/trackgcroot.py
Log:
Ignore one more floating-point instruction in trackgcroot.


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	Mon Feb  8 18:27:35 2010
@@ -348,7 +348,7 @@
         # floating-point operations cannot produce GC pointers
         'f',
         'cvt', 'ucomi', 'subs', 'subp' , 'adds', 'addp', 'xorp', 'movap',
-        'movd', 'sqrtsd',
+        'movd', 'movlp', 'sqrtsd',
         'mins', 'minp', 'maxs', 'maxp', 'unpck', 'pxor', 'por', # sse2
         # arithmetic operations should not produce GC pointers
         'inc', 'dec', 'not', 'neg', 'or', 'and', 'sbb', 'adc',



More information about the Pypy-commit mailing list