Fix syntax error;

Certain GCC versions do not accept empty clobber lists.
Patch by Andreas Arnez (arnez@linux.vnet.ibm.com). Part of 
fixing BZ #342841.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15409
This commit is contained in:
Florian Krohm 2015-07-10 17:21:12 +00:00
parent 89c527ff7b
commit 68e854afe3

View File

@ -51,8 +51,7 @@ do { \
\
__asm__ volatile (opcode " %[dst]," #round ",%[src]\n\t" \
: [dst] "=f"(dst) \
: [src] "f"(src) \
: ); \
: [src] "f"(src)); \
\
printf("%s %.5f\t-> %g %s\n", \
opcode, src, dst, rtext(round)); \