summaryrefslogtreecommitdiff
path: root/libavcodec/arm/mathops.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-05-27 22:49:28 +0100
committerMans Rullgard <mans@mansr.com>2011-05-28 15:00:17 +0100
commit84e4804ad08a6371e9368c7db8c5d9e2c81e175d (patch)
tree0ddd75cdd87f9db04ee0480fb65ec65dedf0e8f7 /libavcodec/arm/mathops.h
parent5726ec171bf7cb833f8445d9a294f23fc047a549 (diff)
ARM: remove unnecessary volatile from inline asm
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/arm/mathops.h')
-rw-r--r--libavcodec/arm/mathops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arm/mathops.h b/libavcodec/arm/mathops.h
index 858e73d677..3a7a1f3ee9 100644
--- a/libavcodec/arm/mathops.h
+++ b/libavcodec/arm/mathops.h
@@ -97,7 +97,7 @@ static inline av_const int MUL16(int ra, int rb)
static inline av_const int mid_pred(int a, int b, int c)
{
int m;
- __asm__ volatile (
+ __asm__ (
"mov %0, %2 \n\t"
"cmp %1, %2 \n\t"
"movgt %0, %1 \n\t"