aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/opts/memset32_neon.S
diff options
context:
space:
mode:
authorGravatar thakis <thakis@chromium.org>2014-08-11 15:27:24 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-08-11 15:27:24 -0700
commitea13afff6e46d8a969611cdd56c996bfb05a27c1 (patch)
treeb5e65a34d1be27b5780e45ec946f47a7359a70ad /src/opts/memset32_neon.S
parent3b73e0163c03a2cb1ee9efa9fddb931751415026 (diff)
Let skia build with clang's integrated assembler.
1. vuzpq is a gcc instruction. Replace it with the equivalent vuzp (see http://llvm.org/PR20423) 2. .func / .endfunc only have an effect with -gstabs, which we don't use. As it's unused and clang doesn't support it, remove .func / .endfunc (also see http://llvm.org/20424) BUG=chromium:124610 R=mtklein@google.com Author: thakis@chromium.org Review URL: https://codereview.chromium.org/461693004
Diffstat (limited to 'src/opts/memset32_neon.S')
-rw-r--r--src/opts/memset32_neon.S2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/opts/memset32_neon.S b/src/opts/memset32_neon.S
index a9eaa0e830..fa034764e0 100644
--- a/src/opts/memset32_neon.S
+++ b/src/opts/memset32_neon.S
@@ -9,7 +9,6 @@
.fpu neon
.align 4
.globl memset32_neon
- .func
/* r0 = buffer, r1 = value, r2 = times to write */
memset32_neon:
@@ -109,5 +108,4 @@ memset32_dropthru:
str r1, [r0, #0]
bx lr
- .endfunc
.end