diff options
author | Nedeljko Babic <nbabic@mips.com> | 2013-02-28 15:57:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-19 16:51:35 +0100 |
commit | d23aefa4984dd79c3fac84ce160daf36b69bf3ea (patch) | |
tree | 5c86a8bd674d25753e681bbe12f76e5aee11851c /libavcodec/mips/celp_math_mips.c | |
parent | 4ce03a95e27d618a2c65b1ed134a72b48bbbff00 (diff) | |
download | ffmpeg-d23aefa4984dd79c3fac84ce160daf36b69bf3ea.tar.gz |
mips: inline assembly clobber list polishing
List of clobbered registers fixed and added where it is lacking.
Signed-off-by: Nedeljko Babic <nbabic@mips.com>
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/celp_math_mips.c b/libavcodec/mips/celp_math_mips.c index f0335c9e9e..d7ccc23fd9 100644 --- a/libavcodec/mips/celp_math_mips.c +++ b/libavcodec/mips/celp_math_mips.c @@ -75,7 +75,7 @@ static float ff_dot_productf_mips(const float* a, const float* b, : [sum] "=&f" (sum), [a] "+r" (a), [b] "+r" (b) : [a_end]"r"(a_end), [length] "r" (length) - : "$f1", "$f2" + : "$f1", "$f2", "memory" ); return sum; } |