mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
dsputil: Use explicit movzbl instead of movzx
This fixes compilation with the latest clang trunk version. Patch by İsmail Dönmez, ismail at namtrac dot org Originally committed as revision 25628 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3699c1f1df
commit
80e33d2451
@ -612,7 +612,7 @@ static void add_hfyu_median_prediction_cmov(uint8_t *dst, const uint8_t *top, co
|
||||
__asm__ volatile(
|
||||
"mov %7, %3 \n"
|
||||
"1: \n"
|
||||
"movzx (%3,%4), %2 \n"
|
||||
"movzbl (%3,%4), %2 \n"
|
||||
"mov %2, %k3 \n"
|
||||
"sub %b1, %b3 \n"
|
||||
"add %b0, %b3 \n"
|
||||
|
Loading…
Reference in New Issue
Block a user