summaryrefslogtreecommitdiffstats
path: root/sys/dev/random
diff options
context:
space:
mode:
authornp <np@FreeBSD.org>2014-10-13 06:50:08 +0000
committernp <np@FreeBSD.org>2014-10-13 06:50:08 +0000
commitac48346d3ffc8aebee9af8148048330660759007 (patch)
treee536d1d6ca050d41da316e88c4a65dd86deeecae /sys/dev/random
parent275ab8166b9895033ecd42dba446d4be11e0f003 (diff)
downloadFreeBSD-src-ac48346d3ffc8aebee9af8148048330660759007.zip
FreeBSD-src-ac48346d3ffc8aebee9af8148048330660759007.tar.gz
Make sure correct object code is generated at -O0.
Submitted by: grehan@ Approved by: so@ (des) MFC after: 1 month
Diffstat (limited to 'sys/dev/random')
-rw-r--r--sys/dev/random/ivy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/random/ivy.c b/sys/dev/random/ivy.c
index cb82adc..23fd542 100644
--- a/sys/dev/random/ivy.c
+++ b/sys/dev/random/ivy.c
@@ -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);
OpenPOWER on IntegriCloud