Commit 4f4c8b54 authored by fbarchard@google.com's avatar fbarchard@google.com

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
parent 1096543e
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 596
Version: 597
License: BSD
License File: LICENSE
......
......@@ -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
......@@ -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
);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment