From 0d19fc5ed37530b1feae839db7b9d1242a9f407f Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Tue, 24 Sep 2013 21:48:50 +0000 Subject: [PATCH] disable lint warning on movzx instructions BUG=none TEST=lint R=johannkoenig@google.com Review URL: https://webrtc-codereview.appspot.com/2290004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@802 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_win.cc | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.chromium b/README.chromium index 288bd7617..82e8db96e 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 801 +Version: 802 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 4b78d341c..dc2db70f4 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 801 +#define LIBYUV_VERSION 802 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_win.cc b/source/row_win.cc index ecae17b38..57d8de5c6 100644 --- a/source/row_win.cc +++ b/source/row_win.cc @@ -2239,9 +2239,9 @@ static const vec16 kUVBiasR = { BR, BR, BR, BR, BR, BR, BR, BR }; // Read 2 UV from 411, upsample to 8 UV. #define READYUV411 __asm { \ - __asm movzx ebx, word ptr [esi] /* U */ \ + __asm movzx ebx, word ptr [esi] /* U */ /* NOLINT */ \ __asm movd xmm0, ebx \ - __asm movzx ebx, word ptr [esi + edi] /* V */ \ + __asm movzx ebx, word ptr [esi + edi] /* V */ /* NOLINT */ \ __asm movd xmm1, ebx \ __asm lea esi, [esi + 2] \ __asm punpcklbw xmm0, xmm1 /* UV */ \