From 147f7b70f5424f024fcbe7d89c5cfe466d2d4eda Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Sat, 22 Nov 2014 01:12:19 +0000 Subject: [PATCH] Quick fix for build gcc - remove unused argument kARGBShuffleMirror from ARGBMirror SSE2. BUG=none TESTED=untested R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/30209004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1177 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_posix.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.chromium b/README.chromium index 31193046f..006d8f533 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1176 +Version: 1177 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index dbfcfa9cf..a88c4bb43 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 1176 +#define LIBYUV_VERSION 1177 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_posix.cc b/source/row_posix.cc index da908cea2..1929ab24c 100644 --- a/source/row_posix.cc +++ b/source/row_posix.cc @@ -2324,7 +2324,7 @@ void ARGBMirrorRow_SSE2(const uint8* src, uint8* dst, int width) { : "+r"(src), // %0 "+r"(dst), // %1 "+r"(temp_width) // %2 - : "m"(kARGBShuffleMirror) // %3 + : : "memory", "cc" #if defined(__SSE2__) , "xmm0"