You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
mathops/x86: work around inline asm miscompilation with GCC 4.8.1
The volatile is not required here, and prevents a miscompilation with GCC 4.8.1 when building on x86 with --cpu=i686 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
b43860ee0c
commit
659df32a9d
@@ -74,7 +74,7 @@ static av_always_inline av_const int64_t MUL64(int a, int b)
|
|||||||
static inline av_const int mid_pred(int a, int b, int c)
|
static inline av_const int mid_pred(int a, int b, int c)
|
||||||
{
|
{
|
||||||
int i=b;
|
int i=b;
|
||||||
__asm__ volatile(
|
__asm__ (
|
||||||
"cmp %2, %1 \n\t"
|
"cmp %2, %1 \n\t"
|
||||||
"cmovg %1, %0 \n\t"
|
"cmovg %1, %0 \n\t"
|
||||||
"cmovg %2, %1 \n\t"
|
"cmovg %2, %1 \n\t"
|
||||||
|
Reference in New Issue
Block a user