comparison libmpcodecs/vf_divtc.c @ 19372:6334c14b38eb

Replace asmalign.h hack by ASMALIGN cpp macros from config.h.
author diego
date Sun, 13 Aug 2006 00:21:14 +0000
parents 7b408d60de9e
children 1767c271d710
comparison
equal deleted inserted replaced
19371:829b824a7d33 19372:6334c14b38eb
6 6
7 #include "config.h" 7 #include "config.h"
8 #include "mp_msg.h" 8 #include "mp_msg.h"
9 #include "cpudetect.h" 9 #include "cpudetect.h"
10 #include "bswap.h" 10 #include "bswap.h"
11 #include "asmalign.h"
12 11
13 #include "img_format.h" 12 #include "img_format.h"
14 #include "mp_image.h" 13 #include "mp_image.h"
15 #include "vf.h" 14 #include "vf.h"
16 15
40 asm ( 39 asm (
41 "movl $8, %%ecx \n\t" 40 "movl $8, %%ecx \n\t"
42 "pxor %%mm4, %%mm4 \n\t" 41 "pxor %%mm4, %%mm4 \n\t"
43 "pxor %%mm7, %%mm7 \n\t" 42 "pxor %%mm7, %%mm7 \n\t"
44 43
45 ASMALIGN16 44 ASMALIGN(4)
46 "1: \n\t" 45 "1: \n\t"
47 46
48 "movq (%%"REG_S"), %%mm0 \n\t" 47 "movq (%%"REG_S"), %%mm0 \n\t"
49 "movq (%%"REG_S"), %%mm2 \n\t" 48 "movq (%%"REG_S"), %%mm2 \n\t"
50 "add %%"REG_a", %%"REG_S" \n\t" 49 "add %%"REG_a", %%"REG_S" \n\t"