From 8cfa3073352c68c19a02a8ef94e66a13e08eaeca Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Fri, 28 Oct 2011 21:53:54 +0000 Subject: [PATCH] fix for vdup syntax error BUG=none TEST=attempt to build on android Review URL: http://webrtc-codereview.appspot.com/250006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@45 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- source/planar_functions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/planar_functions.cc b/source/planar_functions.cc index d2c387c34..4ee19db8a 100644 --- a/source/planar_functions.cc +++ b/source/planar_functions.cc @@ -215,7 +215,7 @@ int I420Copy(const uint8* src_y, int src_stride_y, static void SetRow32_NEON(uint8* dst, uint32 v32, int count) { __asm__ volatile ( - "vdup.u32 {q0}, %2 \n" // duplicate 4 ints + "vdup.u32 q0, %2 \n" // duplicate 4 ints "1:\n" "vst1.u32 {q0}, [%0]! \n" // store "subs %1, %1, #16 \n" // 16 processed per loop