Add a missing " to get closer to compiling.

This commit is contained in:
Bjoern A. Zeeb 2012-05-24 23:46:17 +00:00
parent a7a3b383f2
commit 08c5f3303d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235946

View File

@ -56,7 +56,7 @@
#else
#define mb() __asm __volatile("sync" : : : "memory")
#define rmb() __asm __volatile("sync" : : : "memory")
#define wmb() __asm __volatile("sync : : : "memory")
#define wmb() __asm __volatile("sync" : : : "memory")
#define __ATOMIC_REL() __asm __volatile("sync" : : : "memory")
#define __ATOMIC_ACQ() __asm __volatile("isync" : : : "memory")
#endif