From ea13afff6e46d8a969611cdd56c996bfb05a27c1 Mon Sep 17 00:00:00 2001 From: thakis Date: Mon, 11 Aug 2014 15:27:24 -0700 Subject: 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 --- src/opts/memset32_neon.S | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/opts/memset32_neon.S') 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 -- cgit v1.2.3