# HG changeset patch # User mru # Date 1242845395 0 # Node ID 599c7bfa6e20d64b647c63fd79a5acd33da8fa12 # Parent f1f95c604b568e821e794e3f14f89f446a2b10de mathops: sort arch-specific #include lines diff -r f1f95c604b56 -r 599c7bfa6e20 mathops.h --- a/mathops.h Wed May 20 18:49:52 2009 +0000 +++ b/mathops.h Wed May 20 18:49:55 2009 +0000 @@ -24,14 +24,14 @@ #include "libavutil/common.h" -#if ARCH_X86 -# include "x86/mathops.h" -#elif ARCH_ARM +#if ARCH_ARM # include "arm/mathops.h" +#elif ARCH_BFIN +# include "bfin/mathops.h" #elif ARCH_PPC # include "ppc/mathops.h" -#elif ARCH_BFIN -# include "bfin/mathops.h" +#elif ARCH_X86 +# include "x86/mathops.h" #endif /* generic implementation */