diff options
-rw-r--r-- | dxr3memcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dxr3memcpy.c b/dxr3memcpy.c index ec675a0..1b5f564 100644 --- a/dxr3memcpy.c +++ b/dxr3memcpy.c @@ -294,7 +294,7 @@ static void * mmx2_memcpy(void * to, const void * from, size_t len) } /* since movntq is weakly-ordered, a "sfence" * is needed to become ordered again. */ - __asm__ __volatile__ ("sfence":::"memory"); + __asm__ __volatile__ ("sfence": : :"memory"); __asm__ __volatile__ ("emms": : :"memory"); } /* |