Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r--libpostproc/postprocess.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index 79db062d0a..56de4f1be3 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -156,28 +156,28 @@ static const char *replaceTable[]=
#if defined(ARCH_X86)
static inline void prefetchnta(void *p)
{
- asm volatile( "prefetchnta (%0)\n\t"
+ __asm__ volatile( "prefetchnta (%0)\n\t"
: : "r" (p)
);
}
static inline void prefetcht0(void *p)
{
- asm volatile( "prefetcht0 (%0)\n\t"
+ __asm__ volatile( "prefetcht0 (%0)\n\t"
: : "r" (p)
);
}
static inline void prefetcht1(void *p)
{
- asm volatile( "prefetcht1 (%0)\n\t"
+ __asm__ volatile( "prefetcht1 (%0)\n\t"
: : "r" (p)
);
}
static inline void prefetcht2(void *p)
{
- asm volatile( "prefetcht2 (%0)\n\t"
+ __asm__ volatile( "prefetcht2 (%0)\n\t"
: : "r" (p)
);
}