From 528356a1284c546b2a3e56d6ec2eb5c5e77959c7 Mon Sep 17 00:00:00 2001 From: Frank Barchard Date: Wed, 18 Nov 2015 13:14:15 -0800 Subject: [PATCH] syntax fix for gcc movzwl TBR=harryjin@google.com BUG=libtyv:525 Review URL: https://codereview.chromium.org/1460723003 . --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_gcc.cc | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.chromium b/README.chromium index ef2a1d76b..2cb52efaf 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1541 +Version: 1542 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index d9eff38ff..bc488de97 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 1541 +#define LIBYUV_VERSION 1542 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_gcc.cc b/source/row_gcc.cc index 732d83b84..63577da10 100644 --- a/source/row_gcc.cc +++ b/source/row_gcc.cc @@ -1526,9 +1526,9 @@ void RGBAToUVRow_SSSE3(const uint8* src_rgba0, int src_stride_rgba, // __asm pinsrw xmm0, [esi], 0 /* U */ // __asm pinsrw xmm1, [esi + edi], 0 /* V */ #define READYUV411_EBX \ - "movzw " MEMACCESS([u_buf]) ",%%ebx \n" \ + "movzwl " MEMACCESS([u_buf]) ",%%ebx \n" \ "movd %%ebx,%%xmm0 \n" \ - MEMOPREG(movzw,0x00,[u_buf],[v_buf],1,ebx) " \n" \ + MEMOPREG(movzwl,0x00,[u_buf],[v_buf],1,ebx) " \n" \ "movd %%ebx,%%xmm1 \n" \ "lea " MEMLEA(0x2, [u_buf]) ",%[u_buf] \n" \ "punpcklbw %%xmm1,%%xmm0 \n" \