ARM: disable inline asm for armcc

Originally committed as revision 17831 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Måns Rullgård 16 years ago
parent 1e65f62e2b
commit 35690321a7
  1. 4
      libavcodec/arm/mathops.h
  2. 4
      libavutil/internal.h

@ -25,6 +25,8 @@
#include <stdint.h>
#include "libavutil/common.h"
#if HAVE_INLINE_ASM
# define MULL MULL
static inline av_const int MULL(int a, int b, unsigned shift)
{
@ -108,4 +110,6 @@ static inline av_const int mid_pred(int a, int b, int c)
return m;
}
#endif /* HAVE_INLINE_ASM */
#endif /* AVCODEC_ARM_MATHOPS_H */

@ -134,7 +134,7 @@ extern const uint32_t ff_inverse[256];
);\
ret;\
})
#elif HAVE_ARMV6
#elif HAVE_ARMV6 && HAVE_INLINE_ASM
static inline av_const int FASTDIV(int a, int b)
{
int r, t;
@ -145,7 +145,7 @@ static inline av_const int FASTDIV(int a, int b)
: "=&r"(r), "=&r"(t) : "r"(a), "r"(b), "r"(ff_inverse));
return r;
}
#elif ARCH_ARM
#elif ARCH_ARM && HAVE_INLINE_ASM
static inline av_const int FASTDIV(int a, int b)
{
int r, t;

Loading…
Cancel
Save