Clang complains that "fist" is ambiguous (it's right, too); use
"fists" instead.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12834 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/memcheck/tests/x86/more_x86_fp.c b/memcheck/tests/x86/more_x86_fp.c
index edbc7be..e672703 100644
--- a/memcheck/tests/x86/more_x86_fp.c
+++ b/memcheck/tests/x86/more_x86_fp.c
@@ -105,7 +105,7 @@
for(i=0;i<4;i++) {
int16_t tmp = (fpuc & ~0x0c00) | (i << 10);
asm volatile ("fldcw %0" : : "m" (tmp));
- asm volatile ("fist %0" : "=m" (wa) : "t" (a));
+ asm volatile ("fists %0" : "=m" (wa) : "t" (a));
asm volatile ("fistl %0" : "=m" (ia) : "t" (a));
asm volatile ("fistpll %0" : "=m" (lla) : "t" (a) : "st");
asm volatile ("frndint ; fstl %0" : "=m" (ra) : "t" (a));