comparison postprocess_template.c @ 92:a8ed701a0873 libpostproc

simplify ALIGN_MASK definition
author mru
date Mon, 17 Mar 2008 23:44:46 +0000
parents 8879eafb9431
children c24dab9bca80
comparison
equal deleted inserted replaced
91:8879eafb9431 92:a8ed701a0873
23 * mmx/mmx2/3dnow postprocess code. 23 * mmx/mmx2/3dnow postprocess code.
24 */ 24 */
25 25
26 #include "x86_cpu.h" 26 #include "x86_cpu.h"
27 27
28 #ifdef ARCH_X86_64 28 #define ALIGN_MASK "$-8"
29 # define ALIGN_MASK "$0xFFFFFFFFFFFFFFF8"
30 #else
31 # define ALIGN_MASK "$0xFFFFFFF8"
32 #endif
33
34 29
35 #undef PAVGB 30 #undef PAVGB
36 #undef PMINUB 31 #undef PMINUB
37 #undef PMAXUB 32 #undef PMAXUB
38 33