[pypy-svn] pypy default: Add movhpd to the list of ignored ops
fijal
commits-noreply at bitbucket.org
Mon Feb 28 17:50:25 CET 2011
Author: Maciej Fijalkowski <fijall at gmail.com>
Branch:
Changeset: r42345:6f579c6ec4ec
Date: 2011-02-28 18:50 +0200
http://bitbucket.org/pypy/pypy/changeset/6f579c6ec4ec/
Log: Add movhpd to the list of ignored ops
diff --git a/pypy/translator/c/gcc/trackgcroot.py b/pypy/translator/c/gcc/trackgcroot.py
--- a/pypy/translator/c/gcc/trackgcroot.py
+++ b/pypy/translator/c/gcc/trackgcroot.py
@@ -450,7 +450,7 @@
# floating-point operations cannot produce GC pointers
'f',
'cvt', 'ucomi', 'comi', 'subs', 'subp' , 'adds', 'addp', 'xorp',
- 'movap', 'movd', 'movlp', 'sqrtsd',
+ 'movap', 'movd', 'movlp', 'sqrtsd', 'movhpd',
'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