On x86-64, make MB/WMB compiler barriers
Whie on x86(64) one does not normally need full memory barriers, it's good practice to at least use compiler barriers for places where on other architectures memory barriers are used; this prevents the compiler from over-optimizing.
This commit is contained in:
parent
73de17664d
commit
7e39ffe113
|
@ -60,8 +60,13 @@
|
|||
#endif
|
||||
*/
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define MB __asm__ __volatile__("": : :"memory")
|
||||
#define WMB __asm__ __volatile__("": : :"memory")
|
||||
#else
|
||||
#define MB
|
||||
#define WMB
|
||||
#endif
|
||||
|
||||
static void __inline blas_lock(volatile BLASULONG *address){
|
||||
|
||||
|
|
Loading…
Reference in New Issue