diff libmpeg2/motion_comp_mmx.c @ 28290:25337a2147e7

Lots and lots of #ifdef ARCH_... -> #if ARCH_... and #ifdef HAVE_MMX etc -> #if HAVE_MMX. There might be still more that need to be fixed.
author reimar
date Fri, 16 Jan 2009 09:21:21 +0000
parents da2271c341ee
children e41a2492e665
line wrap: on
line diff
--- a/libmpeg2/motion_comp_mmx.c	Fri Jan 16 08:45:35 2009 +0000
+++ b/libmpeg2/motion_comp_mmx.c	Fri Jan 16 09:21:21 2009 +0000
@@ -23,7 +23,7 @@
 
 #include "config.h"
 
-#if defined(ARCH_X86) || defined(ARCH_X86_64)
+#if ARCH_X86 || ARCH_X86_64
 
 #include <inttypes.h>