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>
This commit is contained in:
@@ -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"
|
||||
|
Reference in New Issue
Block a user