aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mips/celp_math_mips.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-11 03:50:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-11 04:04:29 +0200
commitdd0a9b78db0eeea72183bd3f5bc5fe51a5d3f537 (patch)
treea18603cfcdb1ce0dd73da23a3a65d4b78b3a9f5b /libavcodec/mips/celp_math_mips.c
parentb8a90976da8a61bcf34fcfc4e785914fdb23844b (diff)
downloadffmpeg-dd0a9b78db0eeea72183bd3f5bc5fe51a5d3f537.tar.gz
replace all __volatile__ by volatile
__volatile__ can cause problems with some compilers and volatile is a standard keyword. Found-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mips/celp_math_mips.c')
-rw-r--r--libavcodec/mips/celp_math_mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/celp_math_mips.c b/libavcodec/mips/celp_math_mips.c
index 0af4171bca..6ab1823d77 100644
--- a/libavcodec/mips/celp_math_mips.c
+++ b/libavcodec/mips/celp_math_mips.c
@@ -59,7 +59,7 @@ static float ff_dot_productf_mips(const float* a, const float* b,
float sum;
const float* a_end = a + length;
- __asm__ __volatile__ (
+ __asm__ volatile (
"mtc1 $zero, %[sum] \n\t"
"blez %[length], ff_dot_productf_end%= \n\t"
"ff_dot_productf_madd%=: \n\t"