Commit 56254409 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Avoid SSE2-specifics in generic code

parent b6e52e1f
......@@ -421,7 +421,7 @@ static inline void barrier (void)
OSMemoryBarrier ();
#elif defined(__powerpc__)
asm volatile ("sync":::"memory");
#elif defined(__i386__)
#elif 0 // defined(__i386__) /* Requires SSE2 support */
asm volatile ("mfence":::"memory");
#else
vlc_spinlock_t spin;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment