You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-14 22:15:12 +02:00
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:
@ -57,7 +57,7 @@ static av_always_inline av_const long int lrintf_mips(float x)
|
||||
{
|
||||
register int ret_int;
|
||||
|
||||
__asm__ __volatile__ (
|
||||
__asm__ volatile (
|
||||
"cvt.w.s %[x], %[x] \n\t"
|
||||
"mfc1 %[ret_int], %[x] \n\t"
|
||||
|
||||
|
Reference in New Issue
Block a user