diff arm/asm.S @ 8590:7a463923ecd1 libavcodec

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents 779a9c93bf61
children 93c52263ff74
line wrap: on
line diff
--- a/arm/asm.S	Tue Jan 13 21:13:45 2009 +0000
+++ b/arm/asm.S	Tue Jan 13 23:44:16 2009 +0000
@@ -38,7 +38,7 @@
         .endm
 
         .macro movrel rd, val
-#if defined(HAVE_ARMV6T2) && !defined(CONFIG_SHARED)
+#if HAVE_ARMV6T2 && !CONFIG_SHARED
         movw            \rd, #:lower16:\val
         movt            \rd, #:upper16:\val
 #else