# HG changeset patch # User mru # Date 1254661986 0 # Node ID a1cc263fba25f5aacadc3f8c10f85e55c911e4f8 # Parent b72bb442a775a1900ae57e869b95c3856bfc9e8e ARM: replace some #if with if() diff -r b72bb442a775 -r a1cc263fba25 arm/dsputil_init_arm.c --- a/arm/dsputil_init_arm.c Sun Oct 04 13:13:02 2009 +0000 +++ b/arm/dsputil_init_arm.c Sun Oct 04 13:13:06 2009 +0000 @@ -117,14 +117,7 @@ if (HAVE_ARMV5TE) ff_dsputil_init_armv5te(c, avctx); if (HAVE_ARMV6) ff_dsputil_init_armv6(c, avctx); - -#if HAVE_IWMMXT - dsputil_init_iwmmxt(c, avctx); -#endif -#if HAVE_ARMVFP - ff_dsputil_init_vfp(c, avctx); -#endif -#if HAVE_NEON - ff_dsputil_init_neon(c, avctx); -#endif + if (HAVE_IWMMXT) dsputil_init_iwmmxt(c, avctx); + if (HAVE_ARMVFP) ff_dsputil_init_vfp(c, avctx); + if (HAVE_NEON) ff_dsputil_init_neon(c, avctx); }