diff libmpeg2/motion_comp_iwmmxt.c @ 26044:7a541b991b85

Merge two #ifdefs into one.
author diego
date Sat, 23 Feb 2008 14:47:43 +0000
parents f0ddd02aec27
children
line wrap: on
line diff
--- a/libmpeg2/motion_comp_iwmmxt.c	Sat Feb 23 13:13:28 2008 +0000
+++ b/libmpeg2/motion_comp_iwmmxt.c	Sat Feb 23 14:47:43 2008 +0000
@@ -22,8 +22,7 @@
 
 #include "config.h"
 
-#ifdef ARCH_ARM
-#ifdef HAVE_IWMMXT
+#if defined(ARCH_ARM) && defined(HAVE_IWMMXT)
 
 #include <inttypes.h>
 
@@ -57,5 +56,4 @@
      avg_pixels8_iwmmxt, avg_pixels8_x2_iwmmxt,  avg_pixels8_y2_iwmmxt,  avg_pixels8_xy2_iwmmxt}, \
 };
 
-#endif
-#endif
+#endif /* defined(ARCH_ARM) && defined(HAVE_IWMMXT) */