From 4f4c8b544cf0d4c30cca0baaa19d8be29c79ed2f Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Sat, 9 Mar 2013 00:32:37 +0000 Subject: [PATCH] clobber list fix for arm BUG=196 TEST=none Review URL: https://webrtc-codereview.appspot.com/1172004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@597 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- README.chromium | 2 +- include/libyuv/version.h | 2 +- source/row_neon.cc | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.chromium b/README.chromium index 67c782b57..d3ed2a74b 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 596 +Version: 597 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index 94bba7bf6..bbf983bd2 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 596 +#define LIBYUV_VERSION 597 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/source/row_neon.cc b/source/row_neon.cc index 086630b4d..cc905fe6c 100644 --- a/source/row_neon.cc +++ b/source/row_neon.cc @@ -1183,11 +1183,11 @@ void ARGBToBayerRow_NEON(const uint8* src_argb, uint8* dst_bayer, "vtbl.8 d3, {d0, d1}, d2 \n" // look up 4 pixels "vst1.u32 {d3[0]}, [%1]! \n" // store 4. "bgt 1b \n" - : "+r"(src_argb), // %0 - "+r"(dst_bayer), // %1 - "+r"(pix) // %2 - : "r"(selector), // %3 - : "cc", "memory", "q0", "d2" // Clobber List + : "+r"(src_argb), // %0 + "+r"(dst_bayer), // %1 + "+r"(pix) // %2 + : "r"(selector) // %3 + : "cc", "memory", "q0", "q1" // Clobber List ); }