summaryrefslogtreecommitdiff
path: root/libavcodec/i386/mmx.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/i386/mmx.h')
-rw-r--r--libavcodec/i386/mmx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/i386/mmx.h b/libavcodec/i386/mmx.h
index eab0513416..a2d87b2e73 100644
--- a/libavcodec/i386/mmx.h
+++ b/libavcodec/i386/mmx.h
@@ -184,16 +184,16 @@ typedef union {
#define mmx_m2ri(op,mem,reg,imm) \
__asm__ __volatile__ (#op " %1, %0, %%" #reg \
: /* nothing */ \
- : "X" (mem), "X" (imm))
+ : "m" (mem), "i" (imm))
#define mmx_r2ri(op,regs,regd,imm) \
__asm__ __volatile__ (#op " %0, %%" #regs ", %%" #regd \
: /* nothing */ \
- : "X" (imm) )
+ : "i" (imm) )
#define mmx_fetch(mem,hint) \
__asm__ __volatile__ ("prefetch" #hint " %0" \
: /* nothing */ \
- : "X" (mem))
+ : "m" (mem))
#define maskmovq(regs,maskreg) mmx_r2ri (maskmovq, regs, maskreg)