aboutsummaryrefslogtreecommitdiff
path: root/source/rotate.cc
diff options
context:
space:
mode:
authorfbarchard@google.com <fbarchard@google.com>2015-02-05 23:09:15 +0000
committerfbarchard@google.com <fbarchard@google.com>2015-02-05 23:09:15 +0000
commit1663996c52e64b9d5b225788c84a7e10131f776c (patch)
tree51886133871d308022c81209e6ec1181af24100b /source/rotate.cc
parent3cb485533a111c4defc1ef865ff71f462fc7c4c6 (diff)
downloadlibyuv-1663996c52e64b9d5b225788c84a7e10131f776c.tar.gz
Remove ifdef __SSE2__ and native client ifdef for r14 in register usage declarations.
BUG=395 TESTED=gcc build with nacl R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/34149004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1264 16f28f9a-4ce2-e073-06de-1de4eb20be90
Diffstat (limited to 'source/rotate.cc')
-rw-r--r--source/rotate.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/rotate.cc b/source/rotate.cc
index d4b581d1..5acaccfd 100644
--- a/source/rotate.cc
+++ b/source/rotate.cc
@@ -376,10 +376,8 @@ static void TransposeWx8_SSSE3(const uint8* src, int src_stride,
"+r"(width) // %2
: "r"((intptr_t)(src_stride)), // %3
"r"((intptr_t)(dst_stride)) // %4
- : "memory", "cc"
- #if defined(__SSE2__)
- , "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7"
- #endif
+ : "memory", "cc",
+ "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7"
);
}