Make sure correct object code is generated at -O0.

Submitted by:	grehan@
Approved by:	so@ (des)
MFC after:	1 month
This commit is contained in:
np 2014-10-13 06:50:08 +00:00
parent 275ab8166b
commit ac48346d3f

View File

@ -79,7 +79,7 @@ ivy_rng_store(long *buf)
"2:\n\t"
"mov %2,%1\n\t" /* *buf = tmp */
"3:"
: "+q" (retry), "=m" (*buf), "=q" (tmp) : : "cc");
: "+q" (retry), "=m" (*buf), "+q" (tmp) : : "cc");
return (retry);
#else /* __GNUCLIKE_ASM */
return (0);