Commit 0bb310eb authored by fbarchard@google.com's avatar fbarchard@google.com

Add bic instructions before each load or store for nacl

BUG=333
TESTED=validator
R=jfb@chromium.org

Review URL: https://webrtc-codereview.appspot.com/13669004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@1013 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent bf3b1111
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 1012
Version: 1013
License: BSD
License File: LICENSE
......
......@@ -449,7 +449,7 @@ typedef uint8 uvec8[16];
#if defined(__arm__)
#undef MEMACCESS
#if defined(__native_client__)
#define MEMACCESS(base) "bic %" #base ", #0xc0000000\n"
#define MEMACCESS(base) ".p2align 3\nbic %" #base ", #0xc0000000\n"
#else
#define MEMACCESS(base) "\n"
#endif
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1012
#define LIBYUV_VERSION 1013
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
This diff is collapsed.
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