sws: better MOVNTQ macro

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-10-23 19:13:52 +02:00
parent b6dcd6dfcc
commit f15359727d

View File

@ -20,6 +20,7 @@
#undef REAL_MOVNTQ #undef REAL_MOVNTQ
#undef MOVNTQ #undef MOVNTQ
#undef MOVNTQ2
#undef PREFETCH #undef PREFETCH
#if COMPILE_TEMPLATE_MMX2 #if COMPILE_TEMPLATE_MMX2
@ -30,8 +31,10 @@
#if COMPILE_TEMPLATE_MMX2 #if COMPILE_TEMPLATE_MMX2
#define REAL_MOVNTQ(a,b) "movntq " #a ", " #b " \n\t" #define REAL_MOVNTQ(a,b) "movntq " #a ", " #b " \n\t"
#define MOVNTQ2 "movntq "
#else #else
#define REAL_MOVNTQ(a,b) "movq " #a ", " #b " \n\t" #define REAL_MOVNTQ(a,b) "movq " #a ", " #b " \n\t"
#define MOVNTQ2 "movq "
#endif #endif
#define MOVNTQ(a,b) REAL_MOVNTQ(a,b) #define MOVNTQ(a,b) REAL_MOVNTQ(a,b)