diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-11 03:50:34 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-11 04:04:29 +0200 |
commit | dd0a9b78db0eeea72183bd3f5bc5fe51a5d3f537 (patch) | |
tree | a18603cfcdb1ce0dd73da23a3a65d4b78b3a9f5b /libavcodec/mips/acelp_vectors_mips.c | |
parent | b8a90976da8a61bcf34fcfc4e785914fdb23844b (diff) | |
download | ffmpeg-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/acelp_vectors_mips.c')
-rw-r--r-- | libavcodec/mips/acelp_vectors_mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/acelp_vectors_mips.c b/libavcodec/mips/acelp_vectors_mips.c index d62b37798c..6f9390f225 100644 --- a/libavcodec/mips/acelp_vectors_mips.c +++ b/libavcodec/mips/acelp_vectors_mips.c @@ -61,7 +61,7 @@ static void ff_weighted_vector_sumf_mips( const float *a_end = in_a + length; /* loop unrolled two times */ - __asm__ __volatile__ ( + __asm__ volatile ( "blez %[length], ff_weighted_vector_sumf_end%= \n\t" "ff_weighted_vector_sumf_madd%=: \n\t" |