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>
This commit is contained in:
Nedeljko Babic
2013-02-28 15:57:09 +01:00
committed by Michael Niedermayer
parent 4ce03a95e2
commit d23aefa498
11 changed files with 35 additions and 13 deletions
+1 -1
View File
@@ -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;
}